Quote:
Originally Posted by tcarr9
Thanks so much! I used the hack I found in the tracker link and it works nicely now! What I did was edit vbulletin.css to find this:
Code:
dl.tabslight dd a:hover {
color:{vb:stylevar linkhover_color};
background:{vb:stylevar navbar_tab_selected_background.backgroundColor} {vb:stylevar navbar_tab_selected_background.backgroundImage} repeat-x 0 -{vb:stylevar navbar_tab_selected_top_width}px;
}
and replace it with this:
Code:
dl.tabslight dd a:hover {
color:{vb:stylevar linkhover_color};
background:{vb:stylevar tabslight_selected_background};
}
|
Just a tip here, you can add any code like that to your additional.css to avoid issues when upgrading to futurre version. Keeps from having to revert or change templates when updating vBulletin.
The additional.css is called upon last so anything in there will "overwrite" the default value in the templates.