hi,
I am trying to do the following.
I'm doing a website where the user should be able to chose his font size, colo, type and background color.
I have managed to to this basically by storing color codes in a table. the only problem is that I can make this work using html.
For instance:
<font face="Verdana, Arial, Helvetica, sans-serif" color="<?php echo $row_rsfont['color']; ?>">
That is fine
but not using CSS.
How can I get a my CSS to accept values from a table?
is it possible at all?
CSS files do not accept any php imbedded in the file, so is there a way around that?
It would be great if you could advise.
thanks,
vinny