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: 16 años, 10 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-weightbold;
    
font-size14px;
    
text-aligncenter;
    
background#34353b url('images/button.gif') repeat-x;
    
color#FFFFFF;
    
font-familyverdanahelvetica;
    
line-height33px;
    
height0px;
    
width170px;
    
text-indent0pt;
    
margin0px;
}
a:link.Menu-item {
    
color#FFFFFF;
    
text-decorationnone;
}
a:visited.Menu-item {
    
text-decorationnone;
    
color#FFFFFF;
}
a:hover.Menu-item {
    
text-decorationnone;
    
color#FFFFFF;
}
a:active.Menu-item {
    
text-decorationnone;
    
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