Color
Change the color of the background images included with the CSS. There are no code changes required for that
Width & Margins
Remove the red text, insert the green text. You'll probably also want to add the text-align:center property to center the text within the tab.
Code:
.animatedtabs a{
float: left;
position: relative;
top: 5px; /* 1) Number of pixels to protrude up for selected tab. Should equal (3) MINUS (2) below */
background: url(media/tab-blue-left.gif) no-repeat left top;
margin: 0;
margin-right: 3px; /*Spacing between each tab*/
padding: 0 0 0 9px;
text-decoration: none;
width:125px;
text-align:center;
}
Height
Play around with the following rules:
Code:
top:5px; /* 1) Number of pixels to protrude up for selected tab. Should equal (3) MINUS (2) below */
Code:
padding: 5px 14px 3px 5px; /* 2) Padding within each tab. The 3rd value, or 3px, should equal (1) MINUS (3) */
And adjust these values accordingly.
Code:
padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
Code:
padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
Bookmarks