Quote:
Originally Posted by powerful_rogue
Hi Bobster,
Any idea on how to change the colour of the unselected tab name? It blends in too much and you cant read the tab title until its selected.
Ive tried playing around with the css, but cant seem to locate the correct setting.
|
Without seeing your CSS file, I am going to suggest that you try adding a color element to either the .indentmenu class or the .indentmenu class
so if you are using the default CSS file that Bree provided, it would look like this..
Code:
.indentmenu{
font: bold 13px Arial;
width: 100%;
}
change to
Code:
.indentmenu{
color: #000000;
font: bold 13px Arial;
width: 100%;
}
OR
Code:
.indentmenu ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
border-top: 6px;
background: #869BBF url(/images/gradients/gradient_tcat.gif) repeat-x top left; /* EDIT PATCH/GRAPHIC */
}
change to
Code:
.indentmenu ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
border-top: 6px;
color: #000000;
background: #869BBF url(/images/gradients/gradient_tcat.gif) repeat-x top left; /* EDIT PATCH/GRAPHIC */
}