Changing widget title colour
-
Hi,
I would like to change the colour of all of my footer widget text/title. I have custom CSS but have never used it before.
My website is:
https://janinasofia.wordpress.comDoes anyone know what CSS text I would need to enter in order to change this?
Many thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can use this css;
.footer-widgets .widget .widgettitle{ color: #FFFFFF }You can change
#FFFFFF
with another colors.
-
Hey,
Thank you so much! I have now changed the colour. Sorry to ask another question but do you know what CSS I need to change the reminder of the text right at the bottom (one is the “Follow” text box and below that, “blog at wordpress.com” and “the puzzle theme”).
Thanks again!
-
Here is for Follow button:
input[type="submit"], input[type="submit"]:hover{ border-color: #e68d09; color: #e68d09; }And here is for the credit text:
.footer-wrap a{ color: #e68d09; } -
-
-
Hi,
Sorry, I have yet another CSS question. How would I change the colour for the following:
1. At the top of the page: the menu headers (i.e. London, Elsewhere etc.)
2. At the bottom of the page: the tag wordsThank you
-
-
Hi there,
1. At the top of the page: the menu headers (i.e. London, Elsewhere etc.)
.masthead .menu li a{ color: #1E8CBE; } // Color will change when your pointer over the link .masthead .menu li a:hover{ color: #607D8B }2. At the bottom of the page: the tag words
.wp_widget_tag_cloud a{ color: #1E8CBE; } .wp_widget_tag_cloud a:hover{ color: #607D8B } -
- The topic ‘Changing widget title colour’ is closed to new replies.