View Single Post
Old 02-05-2008, 14:45   #3 (permalink)
ifohdesigns
Registered User
 
ifohdesigns's Avatar
 
Join Date: May 2008
Location: Providence, RI
Posts: 6
Send a message via AIM to ifohdesigns
Code:
<ul> <li><a href="mylink">my link</a></li> <li><a href="mylink">my other link</a></li> </ul>

With the CSS

Code:
ul li a:hover { background: #00386e; color: #fff; padding: 5px; /*just for a little breathing room*/ }

The same principles can be applied directly to an anchor if you wish. Just use the right selectors to get to it.

Good luck!
  Reply With Quote