Hi Wout, There is a sample layout in the Simple / MultiColored that does something like you want. It specifies a different skin class for each tab ie. class="[SKIN]_[TABNUMBER]" and then creates the alternate color in the styles.css file for each TABNUMBER like this: .Simple_MultiColored_1 .Simple_MultiColored_TabUnselected { background-color: yellow; color: black; } .Simple_MultiColored_2 .Simple_MultiColored_TabUnselected { background-color: blue; color: white; } .Simple_MultiColored_3 .Simple_MultiColored_TabUnselected { background-color: red; color: white; }
|