Hey Guys,
I have an image that has two images in one to create my sprite. I have a lighter version of the image on top and a darker version on bottom for the .hover state. I want the hover state (which works right now) to also be the "Current" state.
Any ideas on how to do this? Here's the code I use for my current nav bar just a normal and hover state:
<!-- Start Normal State-->
#navigation a.pools {
background-position: 0 0;
width: 201px;
}
<!--End Normal State-->
<!--Start Hover State-->
#navigation .highlight a.pools:hover,
#navigation a.pools .hover {
background-position: 0 -77px;
width: 202px;
}
<!--End Hover State-->
Thanks everyone, any help appreciated : )