How do I change the color of the blog titles in the classic recent posts? Right now it is white on white and then turns red on mouse-over.
Hi there,
Please add this code to the Global CSS:
.x-recent-posts .h-recent-posts {
color: #000;
}
.x-recent-posts a:hover .h-recent-posts {
color: #efefef;
}
Feel free to change the color values on the code.
- CSS Introduction - https://www.w3schools.com/css/css_intro.asp
- How to get CSS Selectors using Chrome - https://stackoverflow.com/questions/4500572/how-can-i-get-the-css-selector-in-chrome
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.