CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   HTML & CSS (http://www.codingforums.com/forumdisplay.php?f=13)
-   -   Need help with changing color in title bars (http://www.codingforums.com/showthread.php?t=274968)

proypark 10-02-2012 08:04 PM

Need help with changing color in title bars
 
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

aaronhockey_09 10-03-2012 05:13 AM

Quote:

Originally Posted by proypark (Post 1275672)
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


All times are GMT +1. The time now is 12:30 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.