I would like to custom style the framed tabs on a local basis but not change the master CSS. I copied the /* Framed Tabs and added a new /* Framed Tabs - Blue in the CSS. See Below. However when I apply the [tabs_framed-blu] it does not work correctly. Is my logic all wrong in just copying and pasting a new CSS section and changing the code name ?
/* Framed Tabs
-------------------------------------------------------------- */
.tabs_framed{padding:0;margin:0;list-style-type:none;clear:left;height:25px;border-bottom:1px solid #E5E5E5;}
.tabs_framed a{border:1px solid #E5E5E5;background:#fafafa;padding:7px 30px;margin-right:2px;color:#ccc;}
.tabs_framed a:hover{text-decoration:none;background:#fff;color:#999;}
.tabs_framed a.current{cursor:default;border-bottom:1px solid #fff;color:#333;background:#fff;}
.tabs_framed_content{display:none;background-color:#fff;border:1px solid #E5E5E5;border-width:0 1px 1px 1px;padding:15px 30px;}
.tabs_framed_container{margin-bottom:40px;}
/* Framed Blue Tabs JOE JOHNSON Added
-------------------------------------------------------------- */
.tabs_framed-blu{padding:0;margin:0;list-style-type:none;clear:left;height:25px;border-bottom:1px solid #003366;}
.tabs_framed-blu a{border:1px solid #003366;background:#fafafa;padding:7px 30px;margin-right:2px;color:#ccc;}
.tabs_framed-blu a:hover{text-decoration:none;background:#ff3300;color:#999;}
.tabs_framed-blu a.current{cursor:default;border-bottom:1px solid #ff3300;color:#333;background:#fff;}
.tabs_framed_content-blu{display:none;background-color:#fff;border:1px solid #003366;border-width:0 1px 1px 1px;padding:15px 30px;}
.tabs_framed_container-blu{margin-bottom:40px;}
Sincerely,
Joe Johnson













