Hola
Prueba ahora
Código javascript
:
Ver originalfunction fixImagen () {
var alto = parseInt(((screen.height) / 2) / 2); // menos la mitad del height de la imagen
var elem = document.getElementById("img");
elem.style.bottom = alto + "px";
}
window.onload = fixImagen;
Código html:
Ver original<div id="img" style="z-index:9999999; position: fixed !important; position:absolute; bottom:0; right:0px; _top:expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? document.documentElement.scrollTop + (document.documentElement.clientHeight-this.clientHeight) : document.body.scrollTop + (document.body.clientHeight-this.clientHeight));cursor:hand;cursor:pointer;"> <a href="#" onclick="javascript:alert('Sign Up');">IMAGEN
</a>
PD: ¿Consigues fijar la imagen en IE?
Suerte