Posts

Showing posts from January, 2013

How to change link, hover & visited CSS Styles within a div

Create your div and name it appropriately and place a hyperlink in it, and then in the CSS, apply the following; #mydiv A:link,#mydiv A:hover,#mydiv A:visited { color:#ffffff; }   This then prevents the changing of colours of other links outside of that specific DIV.