Link to home
Start Free TrialLog in
Avatar of TeKKeD
TeKKeD

asked on

Multi-Image CSS List menu

How do I create a CSS list based menu with multi image rollovers, I want to have every <li> have it's own unique, link and on hover image?
ASKER CERTIFIED SOLUTION
Avatar of lunadl
lunadl
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Creating a separate class for each rollover should do it.

place ":hover" after a class or id name to get a rollover effect. For example

.list1:hover
{
background-image:url(images/image1.gif);
}
Avatar of TeKKeD
TeKKeD

ASKER

Thankx :)