Reputation: 11364
I'm using jquery tab in asp.net MVC application. I need to customise the tab with below,
need to change the background color of tabs, this is done by below CSS,
.ui-tabs .ui-tabs-nav a
{
background-color: #EBF1DE;
}
Now when a tab is selected, the background color should be red, but below code not works, always the color is "#EBF1DE", but other attribute (like font weight:bolder works),
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state- active
{
font-weight: bolder;
}
Also how to get rid of below red highlited backgroud,
Upvotes: 0
Views: 39
Reputation: 629
IMO the best way is to not use the default theme, and put up your own, you can add your own selectors and style them, or use themeroller ?
If you are not a designer I think themeroller would be the best bet for you.
Upvotes: 1