Changing Color of Widget Graphic
-
AuthorPosts
-
manwithoutqualities
MemberI’d like to change the colours of the 4 right hand side widget graphics (recent, archives, twitter, email) but not having looked at the CSS for 2 years, I’m somewhat lost. Cheers!
The blog I need help with is: (visible only to logged in users)
scottbasgaard
MemberHey there,
Do you have the CSS upgrade from WP.com?
You could use the following CSS as an example:
#tabs ul.wooTabs {
background: url(images/bg-widget-header.png) no-repeat right top;
}This uses an image:
You could add your own images or try a color:
#tabs ul.wooTabs {
background: #333333;
}Hope this helps!
Wow, the author himself!! Great theme and one I’ve recommended to many others.
Anyway, yes, I do have the CSS upgrade. When I add as per your suggestion (background: #333333) I lose the image and just get an ordinary block of color. What I’m trying to achieve is have those four images in this color #004225 with white text. I appreciate that my incompetence might well be getting in the way of your clear instructions . . . so please forgive me. Would it help for you to see my CSS sheet? Cheers,
scottbasgaard
MemberHey again,
Correct, you’ll lose the image since the background is actually an image and not CSS:
#tabs ul.wooTabs {
background: url(images/bg-widget-header.png) no-repeat right top;
}If you’d like the images in #004225 you’ll need to edit them in something like Photoshop and use that for the images URL instead.
Thanks again!
Thanks Scott. I understand now.
Assuming I have the edited image, where do I upload the image to? My media file and then use that URL in the CSS?Cheers,
How did I manage to get the graphics coloured grey? I must have done something via the CSS to make the change from the standard blue. Now if I could do that again . . .
scottbasgaard
MemberHey there.
There are a few different color schemes bundled with this theme.
These can be changed from your theme options.
Assuming I have the edited image, where do I upload the image to? My media file and then use that URL in the CSS?
Yup! That would work:
#tabs ul.wooTabs {
background: url(URL GOES HERE) no-repeat right top;
}Cheers,
Sibrar2012
MemberI tried the following:
#tabs ul.wooTabs {
background: #3F7E33;
}No change? Did I so something wrong? I thought without loading up Illustrator a simple css change could work for me instead? I tried the css above but it does not seem to work for at all.
scottbasgaard
MemberHey again,
That should work to change the color.
To change the other widgets as well try:
#tabs ul.wooTabs, .widget h3 {
background: #3F7E33;
}Kind Regards
ibrar2012
MemberDoes work but you lose that cool little effect dont you? That little upside down triangle that creates depth effect?
scottbasgaard
MemberCorrect, you’ll lose this as it’s an image:
You’ll either need to make your own images and assign them with CSS or have a solid color with CSS.
Thanks again!
Scott, how do I change the text in CSS of my widget “latest” back to white? I don’t recall what I did to get it this way and I don’t want to mess things up. Cheers!
scottbasgaard
MemberTry this out:
#sidebar .latest .selected {
color: #fff;
}Thanks again!
Thanks very much.
- The topic ‘Changing Color of Widget Graphic’ is closed to new replies.