Hi! Is there a way I can change the colour of the Recent Entries/post on the side bar? Right now they appear like a dark white. I looked carefully but I dont seem to find where I can change it. However, I dont know how to deal with the editor, ccss and stuff like that, so, is there a way I can change the colour without having to touch the script? Thanks.
Hi @elprofe,
I hope you are well today and thank you for your question.
You can change the colour of the Recent Entries/post on the side bar by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS
#secondary .widget_recent_entries a {
color: #0081cc;
}
If you wan to change the colour of all sidebar widgets and not just Recent Entries/post widget then use the following CSS code instead of above.
#secondary .widget a, #secondary .widget li {
color: #0081cc;
}
Please change the color value in the above code to whatever you want to use by referring the following pages.
http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp
Best Regards,
Movin