I have a list of items linking to anchors on the same page and I have been trying to highlight the current link selected because I have a fixed container div with my content beside the list with hidden overflow as to simulate a show/hide effect.

I've worked out a similar example in jsfiddle to better illustrate what I'm trying to accomplish.

I can't seem to highlight the current selected link. Any suggestion? Appreciate your responses, thanks.

link|improve this question
Am I correct when I see that when you click e.g. the second link you want the link for example have another color? If this is the case I think there isn't a pure HTML / CSS solution for this, but you have to resort to javascript. – RepWhoringPeeHaa Jan 25 at 18:24
Yes I would like to have the link corresponding to the displayed content highlighted with a different color. I have used pure html/css to highlight the selected menu item of the current page but not with items that link to content on the same page. I know how I would implement javascript, but I was hoping for a css workaround. – Tribbey Jan 25 at 18:31
How did you implement a pure CSS / HTML solutions for highlighting the link of the current page? is there a pseudo selector I don't know? – RepWhoringPeeHaa Jan 25 at 18:37
basically give the body of each page you want to link to and each link in your menu a unique id e.g. <body id="about"> and <a href="about.html" id="aboutNav">, then reference with css body#about a#aboutNav{background:#ccc;} and viola, highlighted link. – Tribbey Jan 25 at 18:55
just can't seem to get it to work with content on the same page :( – Tribbey Jan 25 at 18:55
show 1 more comment
feedback

migrated from webmasters.stackexchange.com Jan 25 at 19:42

This question came from our site for pro webmasters.

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown