How would I change all of the news story pages to show black text? We’ve been told that the current grey is hard to read. Thanks!
2 Answers
Hi,
You can add the following code to the style.css file:
.rssSummary { color: #000;}
Hope this helps !
Thanks Dominic but after placing that code in the style.css file, the news story text remains gray.
http://kchanews.com/2015/05/04/charles-city-wins-big-at-main-st-iowa-awards/
You can add the following code to the style.css file:
.single .site-content>.hentry .entry-content { color: #000; }
.page .site-content>.hentry .entry-content { color: #000; }
Also, if you want to change the Hyperlink in the content section, you can add the following code to the style.css file:
.single .site-content>.hentry .entry-content a { color: #...;}
.single .site-content>.hentry .entry-content a:hover { color: #...;}
Hope this helps !
Thank you very much, that worked perfectly!
Please login or Register to submit your answer