Link html help? please help?

  • Thread starter Thread starter girldiva
  • Start date Start date
G

girldiva

Guest
i am trying to create a text link, that when someone mouseover's a picture appears, sort of like alt, but instead of words a picture appears.
Help please, and no Javascript i need an HTML code.
Thanks.
 
This will only work with javascript or flash. You cannot do it in HTML.

Hrm... you may be able to do it in css. The graphic will appear under the text but you can possibly adjust the text to be tiny and blend in with the image.

Try this:

<a href="#" class="graphic">

<style>
.graphic a:hover { background: url(yourimage.gif); font-size: 1px; color: #ff0000;}
</style>
 
Back
Top