TheCandyman
Technical User
I have an issue where my menu is css and i need that to be white, but the links in the body should not be white. I have searched around and found what i think might be the answer, but i can't get it to work. The A.MainPart is for the links i don't want to be white. This is what i have:
Code:
<style type="text/css">
<!--
A.MainPart { color: #00426b; text-decoration: underline; }
A.MainPart:visited { color: #00426b; text-decoration: underline; }
A.MainPart:hover { color: #FF0000; text-decoration: underline; }
A.MainPart:active { color: #3366FF; text-decoration: underline; }
.buttonscontainer {width: 166px;}
.buttons a {
color: FFFFFF;
border-bottom: 1px solid;
background-color: 006086;
font: 12px Verdana, sans-serif;
font-weight: bold;
text-decoration: none;
display: block;
margin: 0px;
width: 100%;
text-align: left;
padding-left:12px; padding-right:5px; padding-top:8px; padding-bottom:8px
}
.buttons a:hover {
color: FFFFFF;
border-bottom: 1px solid;
background-color: 5F98B7;
text-decoration: none;
padding-left:12px; padding-right:5px; padding-top:8px; padding-bottom:8px;
}
-->
</style>
<div class="buttonscontainer">
<div class="buttons">
<a href="index.asp">Home</a>
</div></div>
<span class="MainPart">
bulk of text and links....
</span>