Fixed Image being a mailto link?

liunx

Guest
Is there anyway to have a fixed image to be a mailto link.

No matter where you scroll on the page you have the image(being a link) following you, say in the bottom right corner.

I want to be able to have an effect comparable to here (<!-- m --><a class="postlink" href="http://www.xerox.com">http://www.xerox.com</a><!-- m -->)

At the bottom of this page there is a little feedback fixed imageYou can using fixed positioning (position: fixed;), but alas Internet Explorer doesn't support fixed positioning.

1) Use fixed positioning for Standards browsers

2) Use JavaScript to position the link for IE-Win/Mac browsers.

Fixed positioning works just like absolute positioning, only the element is cemented to those X,Y coordinates on the screen, rather than the page.
 
Back
Top