| Posted by Chris Vogel on 12/30/06 16:12 
Bob wrote:> <span style="color: black;">
 >
 > How do I change the style sheet to change these text strings to grey?
 > Will this do it?
 >
 > span style {
 >      color: #787878 !important;
 > }
 
 span[style]
 {
 color: #787878 !important;
 }
 
 But it sounds like you want to change the text color of the entire
 page. You could replace your entire style sheet with something like this:
 
 html, html *
 {
 color: #787878 !important;
 }
 
 The text will be unreadable if the site's style sheet has a background
 color too close to your text color. This would take care of that,
 although it would drastically change the look of some pages:
 
 html, html *
 {
 color: #787878 !important;
 background-color: #ffffff !important;
 background-image: none !important;
 }
 [Back to original message] |