curious1960
Member
Posted 1 year ago #
I am using K2 and have problem as my text is in silver. I played with CSS style sheet, and my main page had dark text, however when I click on specific article, the font color is silver and thus barely readable.
Any suggestions?
My website is: http://www.bosancionline.com
Thanks
check your style.css on line 351
.single #primary .k2-asides .entry-content {
font-size: 1.5em;
color: #999;
}
replace it with
.single #primary .k2-asides .entry-content {
font-size: 1.5em;
color: inherit
}
curious1960
Member
Posted 1 year ago #
Thank you. It worked beautifully. Thank you a lot.