Mystique Theme – Change Colour of widget headings and text in widgets.
-
Hi!
I would like some help to change the footer widgets to change them to the same colour headings as the side widgets. Also i hate grey so i would like to change all text colour in all widgets to be black if possible?
Thank you :-)
The blog I need help with is: (visible only to logged in users)
-
#footer-widget-area .widget-title { background-image: url("/wp-content/themes/pub/mystique/colors/images/blue/widget-title-blue-large.png"); color: #FFFFFF; text-shadow: none; } body { color: #000000; }(Applying 000000 to body will take care of your posts too.)
-
Hi, the following CSS will pretty much duplicate the style of the sidebar widget titles for the footer widget titles, except the background image for the widget title has to be compressed in width some due to the difference in size. You can create a new image at 205px in width, upload it to your media library, get the URL of that image and then replace the URL in the background image declaration below.
For reference, or to use in creating the new image, here is the one for the sidebars: http://s0.wp.com/wp-content/themes/pub/mystique/colors/images/blue/widget-title-blue-large.png
#footer-widget-area .widget-title { background-color: rgba(0, 0, 0, 0); background-image: url("http://s0.wp.com/wp-content/themes/pub/mystique/colors/images/blue/widget-title-blue-large.png?m=1391151725i"); background-size: 100% 100%; color: #FFFFFF; letter-spacing: -0.5px; padding: 11px 5px 6px; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); text-transform: uppercase; } -
-
-
- The topic ‘Mystique Theme – Change Colour of widget headings and text in widgets.’ is closed to new replies.