To get the tabs closer together edit this style from tabcontent.css:
Code:
.shadetabs li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #778;
color: #2d2b2b;
background: white url(shade.gif) top left repeat-x;
}
using -4px will make them touch.
The background color of the content box can be set by adding a background-color property/value pair here (addition red):
Code:
.tabcontentstyle { /*style of tab content oontainer*/
border: 1px solid gray;
width: 97%;
height: 500px;
overflow: scroll;
margin-bottom: 1em;
padding: 10px;
background-color:red;
}
Bookmarks