3raser Posted June 10, 2010 Share Posted June 10, 2010 After looking over this tutorial, I figured it all out and it was now imprinted into my brain: http://www.w3schools.com/css/tryit.asp?filename=trycss_link_advanced But, one thing that bothers me, how do I make it so it's not for ALL links? How do I make it so it's only for my navigation? http://www.w3schools.com/css/tryit.asp?filename=trycss_link_advanced Quote Link to comment https://forums.phpfreaks.com/topic/204428-link-box/ Share on other sites More sharing options...
lemmin Posted June 10, 2010 Share Posted June 10, 2010 Wrap your navigation in a div and give it an id. Then you can specify a hierarchy with that id: <div id="navigation"> [...] </div> #navigation a:link, #navigation a:visited { [...] } [...] Quote Link to comment https://forums.phpfreaks.com/topic/204428-link-box/#findComment-1070548 Share on other sites More sharing options...
3raser Posted June 10, 2010 Author Share Posted June 10, 2010 Never mind. Quote Link to comment https://forums.phpfreaks.com/topic/204428-link-box/#findComment-1070558 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.