Tengo el siguiente código de CSS para controlar el color de los vinculos que tengo en mi Web:
a.nivel1link:link {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000CC;
text-decoration: none;
}
a.nivel1link:hover{
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #CC0000;
text-decoration: none;
}
a.nivel1link:visited {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000CC;
text-decoration: none;
}
a.nivel1link:active {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000CC;
text-decoration: none;
}
.nivel1link {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000CC;
text-decoration: none;
}
Y lo tengo aplicado sobre este otro código de HTML:
<table width="422" border="0" cellpadding="0" cellspacing="0">
<tr align="center" valign="bottom">
<td width="115" > <a href="mailto:[email protected]" class="nivel1link">Contacto</a></td>
<td width="156"> <a href="#" class="nivel1link">Localización</a></td>
<td width="103" > <a href="javascript:abrirPrevision();" class="nivel1link">El
tiempo</a></td>
<td width="142"> <a href="http://www.fisher-nautic.com/" target="_self" class="nivel1link">Inicio</a></td>
</tr>
</table>
Pues esto que en otras ocasiones y páginas funciona siempre, en la siguente página funciona cuando quiere.
¿Alguien tiene alguna idea de porque ocurre esto?
Lo he provado con varios navegadores y he usado DreamWeaver MX por si sirve de algo decirlo.
Os juro que no entiendo lo que sucede.
Os dejo tambien la página en la que está el problema por si la necesitais echar un vistazo..
http://www.telefonica.net/web/fishernautic/index.html
Gracias a tod@s de antemano