Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/10/2008, 10:51
ssclamp
 
Fecha de Ingreso: octubre-2004
Mensajes: 289
Antigüedad: 19 años, 6 meses
Puntos: 10
Respuesta: Problema al aumentar texto al pasar el ratón

Podrías añadirle este css a tu hover y así cogería ese estilo los enlaces que tengas en cualquier parte, incluso dentro de una tabla:

Código HTML:
<HTML>

<HEAD>
<TITLE>Titulo</TITLE>

<SCRIPT LANGUAGE="JavaScript">
<!--
function modificaTexto ()
{
texto1.style.fontSize = "16pt";
}

function restauraTexto ()
{
texto1.style.fontSize = "12pt";
}
//-->
</SCRIPT>
<style type="text/css">
	a:hover { font-size: 16pt; }
	.cuerpo { font-size:12pt; }
</style>

</HEAD>

<BODY class="cuerpo">

<DIV ID="texto1" STYLE="font-size:12pt"
ONMOUSEOVER="modificaTexto()" ONMOUSEOUT="restauraTexto()">
Al pasar por encima de este texto cambiará de tamaño.
</DIV>

<table border="1" style="border-collapse: collapse" width="100%" id="table1">
	<tr>
		<td><a href="http://www.elpais.es">Acceso</a></td>
		<td>&nbsp;</td>
	</tr>
	<tr>
		<td>&nbsp;</td>
		<td>&nbsp;</td>
	</tr>
</table>

</BODY>
</HTML> 
Saludos