View Single Post
Old 10-03-2012, 05:13 AM   PM User | #2
aaronhockey_09
Regular Coder

 
Join Date: Dec 2010
Posts: 411
Thanks: 21
Thanked 55 Times in 55 Posts
aaronhockey_09 is an unknown quantity at this point
Quote:
Originally Posted by proypark View Post
I do not know css, but this is a wordpress blog that we have and I need to change the color of the title bars and the green underneath the header to a blue. How do I do this? I tried to inspect the elements, but it doesn't really tell me anything.

Can an expert help?

the blog: http://community.nestlearning.com
You need to change this div in your css

Code:
.art-PostMetadataHeader {
padding: 1px;
background-color: #B3E58F;
border-color: #118603;
border-style: solid;
border-width: 1px;
}
Change the background-color to a Blue color like #0000FF

Same for the Border-color

Check out this site for color codes.
http://www.computerhope.com/htmcolor.htm


For the header, you need to change this div in your css

Code:
.art-nav .l, .art-nav .r {
position: absolute;
z-index: -1;
top: 0;
height: 40px;
background-image: url('images/nav.png');
}
right now its an image, you can simply make it a color by removing background-image and inserting background-color

Hope this helps

Cheers
aaronhockey_09 is offline   Reply With Quote