Hi,
Please how can i change the color of the sidebar widgets “popular posts” and “recent posts”?
Tks
Hi,
Please how can i change the color of the sidebar widgets “popular posts” and “recent posts”?
Tks
Hi,
You can change the attributes (color, border, etc) of these widgets from your WP dashboard.
Select PLUGINS / Editor
Choose whichever plugin you want to modify (in this case “wordpress popular posts” for example) click select button
Find the .CSS file(s) (the file which gives styling to your theme) click it. It will open on the editor screen.
Change the styling up to your wish (If you are not sure what you are doing be cautious. Try and evaluate what you have changed)
< PressedWord.com >
Hi @caionog,
I hope you are well today and thank you for your question.
You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.
Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS
#secondary .widget.sparkling-popular-posts a {
color: #000;
}
#secondary .widget_recent_entries a {
color: #000;
}
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