Jump to content

Link to current page color


weccleston

Recommended Posts

Hey folks, I know just enough to be dangerous, and this site has been instrumental. One thing I can't find: Is there a way to specify the color of a link if it links to the page you're currently parked on. I have: a:link {color:#000000; text-decoration:none;} /* unvisited link */a:visited {color:#000000; text-decoration:none;} /* visited link */a:hover {color: #FFFFCC; text-decoration:underline;} /* mouse over link */a:active {color:#FFFFCC; text-decoration:underline;} /* selected link */ I would've thought that "a:active" would take care of it, but that just sets the color for the split-second when a link is clicked, and navigation is happening. I want the current page's link to remain highlighted. Any help appreciated, - Will The site: rockandrave.com

Link to comment
Share on other sites

iDont realy get you! In pure HTML: If you want the link that was clicked to still be highlighted even when you recieve the requested page, then highlight the requested page's link yourself. For example, if you are at the 'HOME' page and want the 'ABOUT US' link to still be highlighted when you get to the 'ABOUT US' page, then make sure that the link (about_us link) is already highlighted in the 'ABOUT US' page, so each time you visit the 'ABOUT US' page, its pre-highlighted even without clicking the 'ABOUT US' link in the HOME PAGE.

Link to comment
Share on other sites

One way is to give the <body> element of each page and the links a class name. <body class="home"> <a class="home"><a class="contact"><a class="about"> Then you can highlight any link that has the same class name as the <body> element:

body.home a.home, body.contact a.contact, body.about a.about {    color: black;    font-weight: bold;}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...