Hi, how do you get the link to be red when you hover over the link and green when you don't hover over the link whether you have visited the link or not?
I am using:EDIT: Fixed. I looked through the forums and discovered that order is more important than I thought when dealing with CSS. The code should have looked like this:Code:<style type="text/css"> a:link { color:red; } a:hover { color: #ffcc33; } a:visited { color:purple; }</style>Code:<style type="text/css"> a:link { color:red; } a:visited { color:purple; } a:hover { color: #ffcc33; }</style>



Reply With Quote


Bookmarks