How do you change the font color for the latest news box on the home page? In the demo website, the font appears black. On my site, however, it’s white, and I’ve got a white background, so it’s not showing up. I see where you can change the font color on the actual post page, but that has no impact on the Latest News box on the home page.
To change the font color for the latest news box on the home page
Go to the Appearance -> Theme Options -> Basic Settings -> Custom CSS
add below css code and change the color code as per your need
.news-box h6 a { color: #000000 !important; }
.news-box p { color: #000000 !important; }