There are several files with different colors used for background available in the theme directory, at least these::
currentTab<Color>.gif
otherTab<Color>.gif
tabRow<Color>Bg.gif
In all cases there exist files with <Color> empty (these files are used for default) or set to 'Blue', 'Grey', 'Green', etc.
If you want to change the color I would do the following: copy the colored-file of your choice to the filename without <Color> set, e.g. "copy otherTabRed.gif otherTab.gif". I didn't try this but if you do this with all Background files you should get what you want. The alternative would be to change the entries in style.css from e.g.
Code:
#moduleList > ul > li
{
background-image:url(../../../../index.php?entryPoint=getImage&themeName=Sugar55&imageName=otherTab.gif);
} to
Code:
#moduleList > ul > li
{
background-image:url(../../../../index.php?entryPoint=getImage&themeName=Sugar55&imageName=otherTabRed.gif);
}
Bookmarks