fino a poco fa il link era attivo.
ora se ci passo sopra non succede nulla. perchè?
<table width="800" height="20" border="0" cellpadding="0" cellspacing="0" class="diretta">
<tr>
<td><div class="linkdiretta">
<div class="diretta"></div>
</div>
</td>
</tr>
</table>
css:
/* CSS Document */
/* Definisce lo stile di un layer contenitore del menu */
div.linkdiretta {
width: 800px;
height: 20px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
margin: 0px;
padding: 0px;
top: 0px;
}
/* Definisce lo stile di ogni singolo layer nelle sue parti più spicciole */
div.diretta {
background-image: url(images/diretta.jpg);
width: 800px;
height: 20px;
border-top-style: none;
margin: 0px;
padding: 0px;
top: 0px;
background-repeat: no-repeat;
position: relative;
text-decoration: none;
}
/* Definisce lo stile dei link al caricamento */
a.diretta {
background-image: url(images/diretta.jpg);
padding: 0px;
width: 800px;
height: 20px;
/* Permette di ottenere l'effetto anche se il mouse non è sul testo */
position: absolute;
text-decoration: none;
/* Imposta il contenuto del layer per la larghezza del layer stesso */
display: none;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
margin: 0px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
}
/* Definisce lo stile dei link al passaggio del mouse (modificati solo i colori) */
a:hover.diretta {
background-image: url(images/diretta.jpg);
color: #FFFFFF;
padding: 0px;
position: Relative;
text-decoration: None;
display: Block;
}

