About
Pricing
Community
Teams
Start Free Trial
Log in
TeKKeD
asked on
5/30/2007
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?
CSS
3
1
Last Comment
TeKKeD
8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
lunadl
5/30/2007
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
weikelbob
5/31/2007
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(image
s/image1.g
if);
}
TeKKeD
6/1/2007
ASKER
Thankx :)
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
place ":hover" after a class or id name to get a rollover effect. For example
.list1:hover
{
background-image:url(image
}