I have a button that, when it freezes, I would also like the background image to be displayed. (This arrow is an explanation of the button). Too many questions, but I could not fully customize the answers to work for me.
HTML looks like
<div id="header_feedback">
<a href="#contactForm">
<img title="Add an Event" src="./img/header_feedback.png" alt="Give us your Feedback"/>
</a>
</div>
CSS then
#header_feedback
{margin-left:730px;
margin-top:-135px;
position:absolute;}
#header_feedback:hover
{
background: url ('./img/addevent_tip.png');
}
Any ideas are very welcome!
source
share