technoknow
Technical User
I have one image that on mouseover it needs to change and a third image also needs to become visible. I have the first and second images working fine but I can't figure out how to make the third image to become visible.
Here is my CSS for the 2 images:
Here is the html:
What do I need to do to add a third image to react to the mouseover? I would like to place an image on the page and use visibility: hidden and then when the box1 is hovered on the 3rd image would change with visibility: visible
Hope this is clear, I really appreciate the help. I would be lost without this forum!
TechNoKnow
Once upon a midnight dreary, while I pondered, weak and weary, over many a quaint and curious volume of forgotten code.
Here is my CSS for the 2 images:
Code:
#box_wrapper {
position: absolute;
left: 70px;
top: 240px;
width: 169px;
}
a.box1, a.box1:visited
{
background: url(images/6boxes_1.gif) no-repeat;
position: relative;
float: left;
height: 50px;
width: 77px;
text-decoration: none;
}
a.box1:hover {
background: url(images/6boxes_1over.gif) no-repeat;
height: 50px;
width: 77px;
}
Code:
<div id="box_wrapper">
<a class="box1" href="portfolio.html"></a>
</div>
Hope this is clear, I really appreciate the help. I would be lost without this forum!
TechNoKnow
Once upon a midnight dreary, while I pondered, weak and weary, over many a quaint and curious volume of forgotten code.