Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/11/2008, 16:35
Carlillus
 
Fecha de Ingreso: junio-2007
Ubicación: Sabadell, BCN
Mensajes: 95
Antigüedad: 19 años, 3 meses
Puntos: 1
Pregunta Problema con un estilo según el navegador

Hola, tengo un problema con mi página web y es que los objetos del menú se ven diferentes según si entro desde Internet Explorer, Mozilla Firefox o Google Chrome...

Así se ve con Internet Explorer:



Y así se ve con Mozilla Firefox y con Google Chrome:



Me gustaría que en todos los casos se viera como en Internet Explorer.

Os pongo aquí el código del estilo:

Código PHP:
.Menu-item {
    
font-weight: bold;
    
font-size: 14px;
    
text-align: center;
    
background: #34353b url('images/button.gif') repeat-x;
    
color: #FFFFFF;
    
font-family: verdana, helvetica;
    
line-height: 33px;
    
height: 0px;
    
width: 170px;
    
text-indent: 0pt;
    
margin: 0px;
}
a:link.Menu-item {
    
color: #FFFFFF;
    
text-decoration: none;
}
a:visited.Menu-item {
    
text-decoration: none;
    
color: #FFFFFF;
}
a:hover.Menu-item {
    
text-decoration: none;
    
color: #FFFFFF;
}
a:active.Menu-item {
    
text-decoration: none;
    
color: #FFFFFF;
} 
Y las líneas de cada opción:

Código PHP:
echo('<a class="Menu-item" href="tutorial.php">Cómo Jugar</a>');
echo(
'<a class="Menu-item" href="serv_info.php">Server Info</a>');
echo(
'<a class="Menu-item" href="normas.php">Normas</a>'); 
Alguna solución? Gracias