Sandy wrote:
> in config.php
> $FmtPV['$color1'] = '"#00cc00"';
>
>
> then in the .tmpl file:
> <style>
> h1 {color:$color1;}
> A {color:$color1;}
Rather than this use:
$color1 = '#00cc00';
$HTMLStylesFmt['my_skin'] = "h1 {color:$color1;} ";
That way, there's no need to mess with .tmpl.
~ ~ Dave