gopalnair
Member
Posted 4 years ago #
Hi,
I am currently using the 3-Column News Blue 0.1 Theme for my blog at http://www.vanityshack.org. I have a few questions relating to this theme.
1. How to I change the header background to the colour RED instead of the original BLUE?
2. How do I change the 'Post Title' to the colour RED?
3. Does anyone understand the CSS file of this theme? It is very confusing.
1. Your header is using a background image and not a color. You can change this image http://www.vanityshack.org/wp-content/themes/newsblue/images/topbg.gif from blue to red in a photo editor, or you can remove the image from being called in the css file and then define an actual color instead. Look for this in your css file
#top { background:url(images/topbg.gif) repeat-x; margin: 0px; padding: 0px; height: 100px; }
Change it to something like this
#top { background:#ff0000) repeat-x; margin: 0px; padding: 0px; height: 100px; }
The post title already looks red to me.
It's easy to understand when you use the DOM Selector within FireFox or if you use the FireBug extension or something else which tells you the name of CSS elements on a page.
gopalnair
Member
Posted 4 years ago #
Hi,
Thank you for your reply and help on this matter. I am still unable to change the post title. It is orange in colour and I would like it to be red.
Any idea on where the CSS code is?