Looking to restyle the black bar on my test page located at
The black bar with 3 tabs about halfway down the page needs a new color scheme. By inspecting with FireBug, I found these elements:
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
I attempted to override the default colors using this CSS in my stylesheet:
.ui-tabs-nav .ui-helper-reset .ui-widget-header .ui-helper-clearfix .ui-corner-all
{
background-color: gray;
}
Unfortunately, no changes took effect. Unsure if this is the correct method. How can I update the background strip color of the tabbed bar and adjust the text color as well?
Appreciate any help!