Thank you so much for your help. Below is a chunk of my stylesheet.css where I made the changes.
/sideboxes/
.columnLeft {}
h3.leftBoxHeading, h3.leftBoxHeading a {
font-size: 1em;
height: 22px;
color: #FFFFFF;
}
.leftBoxHeading, .centerBoxHeading {
margin: 0em;
background-color: transparent;
padding: 0.5em 0.2em;
}
.leftBoxHeading {
margin: 0em;
background-color: transparent;
padding: 5px 0px;
background-image: url(../images/menu_bg.gif);
background-repeat: no-repeat;
}
.leftBoxContainer {
border: none;
}
.sideBoxContent {
background-color: transparent;
padding: 0.4em;
}
h3.rightBoxHeading, h3.rightBoxHeading a {
font-size: 1em;
height: 22px;
color: #FFFFFF;
}
.rightBoxHeading {
margin: 0em;
background-color: transparent;
padding: 5px 0px;
background-image: url(../images/menu_right_bg.gif);
background-repeat: no-repeat;
}
.rightBoxContainer {
border: none;
}
h3.leftBoxHeading a:hover {
color: #FFFF33;
text-decoration: none;
}
h3.rightBoxHeading a:hover {
color: #FFFFFF;
text-decoration: none;
}
.rightBoxContent {
background-color: #000000;
margin-bottom: 1em;
The red text is the one I tweaked to change the color of the text PRIOR TO HOVERING and it failed. There wasn't any effect at all.
The blue text is the one I tweaked to change the color of the text WHEN YOU HOVER over it and it was successful.
Can you please help me on how I could change the color of it PRIOR TO HOVERING?
Thank you so much for your time.