Hi,
I use several themes on my homepage (driven by Postnuke) and now realized that some problems occur when users use <font color="..."> in their posts. Just to mention one example: yellow text on my dark background looks pretty good but when used with my desert style theme, you won't see anything (here's an example: http://www.ars-aventuris.de/?theme=Khom - Nasty text).
How could I put some css into my stylesheet to exchange i.e. yellow to red? Or should I simply redefine <font> in my css to always have it in one color?
Thanks for your replies!
Sascha
changing specific font colors
I'd define a few different SPAN classes, for example:
SPAN.quote { color : yellow; }
then obviously in the desert theme you change yellow:
SPAN.quote { color : red; }
Finally, in the HTML, rather than using
<font color="yellow">blah blah</font>
you use <span class="quote">blah blah</span>
Hope that helps!
GREAT! Thank you!
Hi dJomp!
that works great! Thank you!
Sascha