Hello there
Verionia,
As
Xtrato mentioned, the arrow is an image and in order for you to change it's color you'll need to edit it from your style's
"misc" folder >> I've taken care of that, see
"Changing navbar's arrow color" for more information

..
About the text hover color, I can see that they're white .. Maybe you've managed to edit it or maybe you mean the
"active" color and not the
"hover" color .! The reason why i'm saying that is that the text color is already white and when you move your mouse on it, it stays white >>
"hover" .. But when you click on it, it turns into black >>
"active" ..
Anyway, I'll explain to you how to solve your problem:
- Changing navbar's arrow color:
- Download attached images (arrow.png & arrow.gif) and upload both of them to your vB's style "misc" folder >> That should solve the arrow's color issuse ..
- Changing navbar's text "active" color:
- First, sign into your Admin CP ..
- Next, go to "Styles & Templates >> Style Manager" ..
- After that, choose "Edit Templates" option from your defined vB Style drop-down menu ..
- Then, Expand the template groups and look for "vbulletin-chrome.css" template and edit it ..
- Once you enter the template, look for:
Code:
.navtabs li.selected li:hover a.popupctrl.active,
.navtabs li.selected li a.popupctrl.active {
border-color:{vb:stylevar navbar_tab_background.backgroundColor};
background-color:{vb:stylevar navbar_tab_background.backgroundColor};
color:{vb:stylevar navbar_link_color};
text-decoration:none;
}
- Change it to this:
Code:
.navtabs li.selected li:hover a.popupctrl.active,
.navtabs li.selected li a.popupctrl.active {
border-color:{vb:stylevar navbar_tab_background.backgroundColor};
background-color:{vb:stylevar navbar_tab_background.backgroundColor};
color: #FFF;
text-decoration:none;
}
The text in RED points to the color you want which have been set to "white" as you asked .!
- "Save" the template and go check out your forum ..
That should do the trick ..
BTW, your website is blocked in my country for a reason or another

..