DrySnot
Technical User
- Nov 29, 2007
- 46
I am trying to replace javascript with this and I'm having trouble getting my personal settings plugged into it.
When my page page is loaded I want it to display this image
http://www.drysnot.com/menuimages/forums_off.gif
when you mouse over the image I want it to change to this one
http://www.drysnot.com/menuimages/forums_on.gif
Could you please show me how I add in the 2nd image that displays when you mouse over.
Thank you so much for the help
When my page page is loaded I want it to display this image
http://www.drysnot.com/menuimages/forums_off.gif
when you mouse over the image I want it to change to this one
http://www.drysnot.com/menuimages/forums_on.gif
Could you please show me how I add in the 2nd image that displays when you mouse over.
<div class="rollover">
<p>
<a href="forums"><img src="menuimages/forums_off.gif" width="134" height="94" border="0"></a>
</p>
</div>
<style type="text/css">
<!--
.rollover a { display:block; width:32px; background-color: #000000}
.rollover a:hover { background-color: #000000}
-->
</style>
Thank you so much for the help