1) change the name of the classes
Code:
.shadetabs2 li a{
background: white url(images/shade.gif) top left repeat-x;
}
.shadetabs2 li a.selected{ /*selected main tab style */
background-image: url("images/shadeactive.gif");
border-bottom-color: white;
}
and now refer to these new class names within your html. so you'll have 3 codies of the same coding essentially, with different color schemes.
2) Use multiple classes
Code:
.shadetabs li a{
background: white url(images/shade.gif) top left repeat-x;
}
.shadetabs li a.selected{ /*selected main tab style */
background-image: url("images/shadeactive.gif");
border-bottom-color: white;
.tab2 a { backround:url(inactiveimage.2) }
.tab2 a.selected { bacgkround:url(active.2) }
.tab3 a { background:url(inactiveimage.3) }
.tab3 a.selected { background:url(active.3) }
}
Now, in the corrsepoding element, add:
Code:
<class='shadetabs tab2'>
Bookmarks