html - Style control in jQuery tabs UI -
i'm using jquery ui tabs.
how specify colour tab button , text when it's selected , in normal state?
i tried this. did not work.
.ui-tabs .ui-tabs-selected { background: #ff0000; }
try this:
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { background: yellow; }
or
change color on ui css file
open css file search about
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px;}
change
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; background-color:yellow;}
ref link:
Comments
Post a Comment