Quote:
Originally Posted by proypark
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