Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/05/2009, 23:22
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 2 meses
Puntos: 1146
Respuesta: Posicion capa respecto a la ventana

Ok carnal solo me queda pensar en que tengas alguna otra instrucción que anule el fixed en tus imágenes, podrías mostrar tu código completo o tu sitio?

en dado caso te dejo este código como ejemplo

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <style>
  body{height:2000px;}
  .fixed{visibility:visible; position:fixed; top:150px; left:350px;}
  </style>
 </head>
 <body>
<img src="http://ag.wsimarketing.info/img/img005.jpg" class="fixed" />
 </body>
</html>