Skip to main content

Reply to "FONT PROBLEMS PLEEEEEEESE HELP"

Hi,

Sorry.......

The problem is the style sheet rules are causing your FONT colors to fail.

That missing code I noted may be the cause (that needs testing), but the effect is that #wrapper * rule is forcing WHITE on everything including the HTML FONTs for those sections; the * or "universal selector" being the culprit. If you remove the * from that style rule, it does appear to relieve the problem on my tests.

This code.....

#wrapper * {
color: #fff;
font-family: Verdana, Arial, sans-serif;
}


Needs to change to this code (minus *).....

#wrapper {
color: #fff;
font-family: Verdana, Arial, sans-serif;
}


This one definitely needs more investigation, as I don't understand why there is missing code.

Danno

Edit: More mystery..... That * isn't on the main template in the library. In fact, this listing code really doesn't match the library code. Confused
Last edited by danno
Copyright © 1999-2018 Auctiva.com. All rights reserved.
×
×
×
×