Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/02/2009, 12:21
Avatar de SetheR
SetheR
 
Fecha de Ingreso: enero-2009
Mensajes: 265
Antigüedad: 15 años, 3 meses
Puntos: 44
Respuesta: Help!!! I need somebody!!!! :)

Asi a bote pronto, en principal.css cambia eso:

Código:
#footer {}
#footer ul { position: absolute; margin:0 0 0 0; padding:0; margin-left: 101px; margin-top: 349px; backgroundimage: url(../img/footer.jpg) center; height: 84px; width: 777px; }
por esto:

Código:
#footer {}
#footer ul { position: absolute; margin:0 0 0 0; padding:0; margin-left: 101px; margin-top: 349px; background-image: url(../img/footer.jpg); height: 84px; width: 777px; }
o si no, por esto, ya que no se si IE acepta background img en ULs:

Código:
#footer {
 background-image: url(../img/footer.jpg);
background-repeat:no-repeat;
}
#footer ul { position: absolute; margin:0 0 0 0; padding:0; margin-left: 101px; margin-top: 349px;height: 84px; width: 777px; }
Saludos