Hi, I've been trying to do this many different ways for the past 2 days... I am stuck.
My rollover images aren't showing up in the body of my page. You can see here http://www.jkltd.com/newsite/oriental-rugs/
This is the code I put into my style sheet
#test
{
display: block;
width: 45px;
height: 31px;
background: url('2x3A.gif') no-repeat 0 0;
}
#test:hover
{
background: url('2x3B.gif') no-repeat 0 0;
}
#test span
{
display: none;
}
This is the code I put into the HTML on my page.
<a id="test" title="test" href="#"><span>test </span></a>
But the images aren't showing up. Anyone have an idea of what I am doing wrong?
THanks!!!