I am using the Smoothness theme with Jquery tabs, and I want to override the look of the default theme on a few tabs, how would I go about doing that. I have tried the following:
$('#tab-id').css('background', '-moz-linear-gradient(center top, #999999, #494949 75%, #f3c84b)');
I call this from a click function when the user clicks on the tab.
I also tried .addClass too, but that also didn’t override the smoothness theme.
Kind of at my wits end, any help would be appreciated.
Just define the parameters in an external CSS files that are loaded AFTER your jQueryUI CSS sheet, if you use an ID on the tabs, you simply reference that ID in your CSS.
No need to style the CSS through JS!