New Zenner
- Join Date:
- Dec 2008
- Posts:
- 10
- Plugin Contributions:
- 0
Categories Dressing
Hey guys,
I have 3 categories
1, 2, and 3
with files:
catimg1.gif & catimg1hover.gif
catimg2.gif & catimg2hover.gif
catimg3.gif & catimg3hover.gif
I also have this code:
#categories a {
background-repeat: no-repeat;
display: block;
}
/example for individual category as bg image/
a.catimg1 {
background-image: url(../images/catimg1.gif);
height: 33px;
}
a.catimg1:hover {
background-image: url(../images/catimg1hover.gif);
}
a.catimg2 {
background-image: url(../images/catimg2.gif);
height: 33px;
}
a.catimg2:hover {
background-image: url(../images/catimg2hover.gif);
}
a.catimg3 {
background-image: url(../images/catimg3.gif);
height: 33px;
}
a.catimg3:hover {
background-image: url(../images/catimg3hover.gif);
}
but its not hovering! what do I do????