Posts: 5,935
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
|
defiantrican: where did that stat come from? Even on a webmaster-specific site, it generally doesn't go beyond 35%.
Anyway, having said that, the fix may be surprisingly simple.
Under your CSS body tag, put this:
Code:
color: #00FF00; /* or your choice of green here */
Any time you put a background-color, there should always be a color to go with it (and vice versa). It's good CSS practice.
If you don't want to explicitly define a color, put color: inherit; . Same value works for background-color .
|