Hi @sbruner
Didn't work so either I didnt put it in the right spot or it's the wrong code. See what I've done:
/********************************************************************************
Style 1
********************************************************************************/
/*--------------------------------------------------
.tabber = before the tabber interface is set up
.tabberlive = after the tabber interface is set up
--------------------------------------------------*/
.style1 {
background: #D6D6D8;
}
.tabberlive.style1 {
padding:15px 0 3px;
}
/*--------------------------------------------------
ul.tabbernav = the tab navigation list
li.tabberactive = the active tab
--------------------------------------------------*/
.style1 ul.tabbernav {
margin-left: 18px;
margin:0;
padding: 1px 0;
font: bold 12px; /* Verdana, sans-serif*/
}
*html .style1 ul.tabbernav{ /* ie6 only */
padding: 2px 0;
}
*+html .style1 ul.tabbernav{ /* ie7 only */
padding: 2px 0;
}
.style1 ul.tabbernav li {
list-style: none;
margin: 0;
display: inline;
}
.style1 ul.tabbernav li a { /* inactive tabs */
background-color:#fff;
border:1px solid #ccc;
color:#666769;
font-size:11px;
padding:5px;
font-weight: bold;
}
.style1 ul.tabbernav li.tabberactive a{ /* active tab */
background-color:#666769;
border:1px solid #666769;
color:white;
font-size:11px;
padding:5px;
}
.style1 ul.tabbernav a:hover {
background:#666769;
text-decoration:none;
color:#fff;
}
.style1 ul.tabbernav {
margin:0 5px !important;
padding: 3px 0 0 5px !important;
font: bold 12px Verdana, sans-serif;
}
/*--------------------------------------------------
.tabbertab = the tab content
Add style only after the tabber interface is set up (.tabberlive)
--------------------------------------------------*/
.style1.tabberlive .tabbertab {
background:none repeat scroll 0 0 #FFFFFF;
margin:10px;
padding:10px;
border: 1px solid #CCCCCC;
}
/* Example of using an ID to set different styles for the tabs on the page */
.style1.tabberlive#tab1 {
}
.style1.tabberlive#tab2 {
}
.style1.tabberlive#tab2 .tabbertab {
height:200px;
overflow:auto;
}
.style1 .tablist {
font-size:.8em;
}