Topic: CSS + PHP for easy COLORS changing ...
I'm working on many xhtml sites and the code color is quite the same ...
for menu, a color, but this same color is used for a title, or a link, for example ...
I would like to know how to do with php ....
<?
$color1 = "#FF6600";
$color2 = "#FFF";
$color3 = "#EEE";
?>
in css ... I would like to do ...
p {
font-size : 12px;
color : $color1;
}
but ... how declare php in css ?!! rename the css file in php ?!