View Single Post
Old 09-26-2020, 01:20 PM   #8
thiago.eec
Wizard
thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.thiago.eec ought to be getting tired of karma fortunes by now.
 
Posts: 1,217
Karma: 1419583
Join Date: Dec 2016
Location: Goiânia - Brazil
Device: iPad, Kindle Paperwhite, Kindle Oasis
Quote:
Originally Posted by bookgobrrr View Post
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;
   ...
}
thiago.eec is offline   Reply With Quote