<style type="text/css">
<!--
font {
font-family: <?php echo $font ?>;
font-size: <?php echo $size ?>px;
color: <?php echo $color ?>
} a {
color: <?php echo $linkcolor ?>;
text-decoration: none
} a:hover {
text-decoration: underline
}
-->
</style>
i have this code included at every page of my project...
in the templates i use <font size="1">Bla bla bla</font>
so it is formatted correctly...
the problem is that if i use
<font size="1" color="#cccccc">Bla bla bla</font> this will not display with the color in the tag but the css one... so how can i fix this?
Sorry that this is no real php question...