One More Question- How do I change the color of the tab background color? Or where can I find it in the CSS
Tabs are in the section that starts with the following, goes all the way to the bottom of the css to just before the Ajax Notifier section:
/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back, .maintab_active_last
{
color: white;
text-transform: uppercase;
vertical-align: top;
}
The tabs are graphic images.
To change those you need to make new images and replace the urls in the css.
Then, if need be, you change the font colors to go with the new tab colors.
There are a total of 12 tab images.
There are 6 maintab images: maintab_first, maintab_back, maintab_last
maintab_active_first, maintab_active_back, maintab_active_last
There are 6 mirrortab images: mirrortab_first, mirrortab_back, mirrortab_last,
mirrortab_active_first, mirrortab_active_back, mirrortab_active_last
(
The "active" tabs are those that you see when you mouseover a tab.)
When you are modifying a style if you look at the top section you can see the graphics there. You could download them from there, and use a graphics program to change the colors of them. There are transparent areas so you would need to save them as a transparent .gif (or a png if you dont mind that some browsers (IE6 for instance) that do not support png transparency) Upload them to Photobucket,etc.. get the urls and replace them in the css.
Option 2:
Tabs can also be done as "links" instead of graphics.
You replace the graphic image urls with color codes.
This stylesheet has links instead of tabs -
Dark Aqua Marble Click the thumbnail on that page to see how the tabs are done.
Look at the section of the css for the tabs and compare it to the default stylesheet and you will see how it is done.
( plus many others you can find in the stylesheet index-
Stylesheet Index )