Hi,
The style for “tabSelected” will override it. You can however override the color for “tabSelected” like this:
ul.tabRowLast li.tabSelected a{
background-color:green!important;
}
If you want to override the “selected tab color” for individual tabs you can use this code:
#dffs_tab_2.tabSelected a{
background-color:red!important;
}
#dffs_tab_3.tabSelected a{
background-color:orange!important;
}
2 and 3 are the index from left.
Hope this helps you on the way,
Alexander