I'm trying to add some opacity to my jQuery tabs, but so far I've only been successful with accordions. Any tips or tricks for achieving this effect with tabs?
Styling with CSS
.ui-tabs{
background-image: none;
background: rgba(204, 204, 204, 0.5);
}
.ui-tabs-nav{
background-image: none;
background: rgba(204, 204, 204, 0.5);
}
.ui-tabs-panel{
background-image: none;
background: rgba(204, 204, 204, 0.5);
}