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:

customizing jquery ui tabs


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -