I have this within <style>
--div#acc a img {height: 0; width: 0; border-width: 0;}
--div#acc a:hover img {position: absolute; top: 10px; left: 10px; height: 380px; width: 300px;}
and this is in the <body>
---- <td width="142" height="40"><div align="right" div id="acc"><span class="style4"> --- <a>View4<img src="photo.jpg" /></span></div></td>
What this does is when the words "View4" is moused over the page will display image "photo.jpg"
I want to replace "View4" with an image itself, so that when an image is moused over it displays another image.
How do I do this?
--div#acc a img {height: 0; width: 0; border-width: 0;}
--div#acc a:hover img {position: absolute; top: 10px; left: 10px; height: 380px; width: 300px;}
and this is in the <body>
---- <td width="142" height="40"><div align="right" div id="acc"><span class="style4"> --- <a>View4<img src="photo.jpg" /></span></div></td>
What this does is when the words "View4" is moused over the page will display image "photo.jpg"
I want to replace "View4" with an image itself, so that when an image is moused over it displays another image.
How do I do this?