Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/03/2008, 17:20
komodo
 
Fecha de Ingreso: noviembre-2006
Mensajes: 437
Antigüedad: 17 años, 5 meses
Puntos: 3
Re: Problema Lista en IE

Prueba lo siguiente:

Cita:
#menuup {
width: 100%;
height: 20px;
padding-top:20px;
}

#menuup ul {
margin:0 auto;
list-style:none;
text-align:center;
}
#menuup li {
display:inline;

}
#menuup li a {
color: #fff;
text-decoration: none;
float:left;
font-family: Georgia,"Times New Roman",Times,serif;
font-size: 15px;
text-align: center;
padding-right: 4px;
padding-left:39px;
font-weight: bold;
}
* html #menuup li a {
color: #fff;
text-decoration: none;
float:left;
font-family: Georgia,"Times New Roman",Times,serif;
font-size: 15px;
text-align: center;
padding-right: 4px;
padding-left:39px;
font-weight: bold;
}
El ultimo estilo precedido por * html solo sera interpretado por Internet Explorer (es un hack de css) asi puedes modificar los valores de padding hasta que quede igual que en Firefox.

Un saludo