TheCandyman
Technical User
I have a css menu, and i'm trying to get it to show a different color for the page that is showing. Take a look here:
I want the FAQ on the navagation to be a different color, but i can't seem to get it working. I assigned an ID="current" but i'm missing something in the css. I have the html for it as
and css for that is
Not sure what i missed... anyone??
I want the FAQ on the navagation to be a different color, but i can't seem to get it working. I assigned an ID="current" but i'm missing something in the css. I have the html for it as
Code:
<div class="buttonscontainer">
<div class="buttons">
<a href="[URL unfurl="true"]http://www.WesternRegional.org/faq.asp"[/URL] id="current">FAQs</a>
</div>
</div>
and css for that is
Code:
.buttonscontainer {width: 211px;}
.buttons a {color: #FFFFFF;
border-bottom: 1px solid;
border-color: #e9e9e9;
background-color: #86BAD6;
font: 13px 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:6px; padding-bottom:6px}
.buttons a:visited {color: #FFFFFF; text-decoration: none}
.buttons a:hover, a:active {color: #FFFFFF; background-color: #5f98b7; border-color: #fff; text-decoration: none}
.buttons a:current {color: FFFFFF; background-color: #5f98b7; border-color: #fff; text-decoration: none}
Not sure what i missed... anyone??