Quote:
Originally Posted by bookgobrrr
Thanks very much for the replies!
Where exactly would I make this change in the css .stylesheet?
|
You must search you CSS stylesheet for 'color'. Then, for every instance of it, use the value 'inherit'.
Example:
If you find this rule:
Code:
p {
...
color: #808080;
...
}
Change it to:
Code:
p {
...
color: inherit;
...
}