how to get rid of the orange background image in the tabs???
EDIT
i tried
$('.ul').removeClass('ui-widget-header ');
$('.li').removeClass('ui-widget-header ');
$('div[id^=tab]').removeClass('ui-widget-header');
$('a').removeClass('ui-widget-he开发者_开发技巧ader');
but no result!
you'll probably want to check out various themes for jQuery UI. It sounds like you're using the default one. There is the theme roller where you can create your own that will match your app better.
You can either change your theme using Theme Roller or, comment out the CSS, but note this will affect your other header styles:
Comment out this line, around line 54 in the CSS might have moved a bit:
.ui-widget-header { .... }
精彩评论