PDA

View Full Version : StyleVar help please


OurCouponHome
01-08-2011, 06:06 PM
On our site, the dropdown bar from the secondary navbar are on a white background? How do we change this background? For example, here on vbull.org, when you click on the "Help" dropdown, how do we get that light blue background?

KevinL
01-08-2011, 06:32 PM
In your additional.css add:

.navtabs li.selected .popupbody li > a {
background-color: #xxxxxx;
}



xxxxxx = your color hex

You can also add:

color:#xxxxxx

and make the text any color you wish :)

OurCouponHome
01-09-2011, 12:53 PM
Nope, that didn't work. It shows the color when you tab over the links but it is just white when you click on the arrow.

KevinL
01-09-2011, 01:04 PM
Try:

.navtabs .popupbody li {
color: #000000;

}

OurCouponHome
01-09-2011, 01:26 PM
Nope, that didn't work. The only other thing I can think of is that the text is white until you hover over it. IDK.

KevinL
01-09-2011, 01:30 PM
That should change the text to black...before it is hovered over then...

Looks like you changed it to 999999?

what is it you are trying to accomplish?

OurCouponHome
01-09-2011, 01:38 PM
No, it's 000000

KevinL
01-09-2011, 01:39 PM
If you are looking to change the actual background..

.popupbody li > a, .popupbody li > label {
background: none repeat-x scroll center bottom #xxxxxx;
}

--------------- Added 1294587600 at 1294587600 ---------------

lol ...am I looking at a different site? It has now changed to all white again...

OurCouponHome
01-09-2011, 01:43 PM
I want the background of the drop down boxes white but the text black.