jquery - Different css in a div -
here's row jquery css:
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; } i'd change background none, in smalltabs div. doesn't work (i tried copy line):
#smalltabs { border: none; padding: 0; .ui-widget-header { border: 1px solid #e78f08; background: none; color: #ffffff; font-weight: bold; } }
try using important , correcting selector
#smalltabs { border: none; padding: 0; } #smalltabs .ui-widget-header { border: 1px solid #e78f08; background: none !important; color: #ffffff; font - weight: bold; }
Comments
Post a Comment