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