I want to have a section of links for Anchor Tags that are a different color than the hyperlinks for the rest of my page (the ones that go to different pages). How do I do this? I tried CSS and so far have not been able to get this to work right and am not sure why. Anyway, sorry for the stupid question. thanks in advance for your help.
Well if that section where the links will be placed already has a class/id defined through CSS you can continue as (for class) .section a { color:#0000FF; text-decoration:underline } .section a:hover { color:#0000FF; text-decoration:none } Code (markup): and you know the procedure for ID (same just without the dot but with #)