How do I change the color of the bottom line in the header wrapper? I attached an image of what I am asking about. Thanks in advance.
How do I change the color of the bottom line in the header wrapper? I attached an image of what I am asking about. Thanks in advance.
In your stylesheet.css. Find this code
Change the background-color that is, from your pic, currently #000000 to what you want and the color to one that will complement the otherCode:#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper { margin: 0em; background-color: #000000; font-weight: bold; color: #ffffff; height: 1%; width: 100%; }
Zen-Venom Get Bitten
I am using the stylesheet from the Classic template in my custom template. I tried changing the background color but that does not work.
Here is what I put,
Code:#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper { margin: 0em; background-color: #008000; background-image: url(../images/tile_back.gif); padding: 0.5em 0.2em; font-weight: bold; color: #ffffff; height: 1%; border-bottom-color: #336633; }
You've just made it the background itself green, using "#008000" . If you wanted it black like the picture, it was stated that black is "#000000". Also, that border-bottom declaration is wrong. Check other border-bottoms(like for the HR selector) to see where you went wrong.
If you want... simply adjust the padding, you will be able to tuck the image back in without having that bleed line showing.
Try this;
Code:#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper { margin: 0em; background-color: #000000; background-image: url(../images/tile_back.gif); padding: 0.3em 0.2em; font-weight: bold; color: #ffffff; height: 1%; }
I want the line showing I just want it to be green.
Oh, okay.![]()
The code you supplied should have worked, minus the border bottom;
Code:#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper { margin: 0em; background-color: #008000; background-image: url(../images/tile_back.gif); padding: 0.5em 0.2em; font-weight: bold; color: #ffffff; height: 1%; }
Still does not show. But its okay. Thanks.