I have been working with the Smoothness theme and Jquery tabs, and I am looking to customize the appearance of a few specific tabs. I have attempted the following approach:
$('#tab-id').css('background', '-moz-linear-gradient(center top, #999999, #494949 75%, #f3c84b)');
I trigger this action through a click function when the user selects the tab.
I also experimented with using .addClass
, but it did not successfully overwrite the default Smoothness theme.
I feel like I've hit a roadblock here, any guidance or assistance would be greatly appreciated.