Salve a tutti. Ho un problema con il CSS del mio sito.
Ho impostato nel CSS questi attributi per i collegamenti:
codice:
a:link,
a:visited,
a:focus,
a:active{
	background: transparent;
	color: #444;
	text-decoration: none;
}

a:hover{
	background: transparent;
	color: #364F5F;
	border-bottom: 1px dashed #2F4484;
}
E sin qui tutto ok, il problema è che quest'effetto si ha anche sulle immagini del sito con l'effetto che passando sopra quest'ultime il bordo inferire smuove tutto il layout...
Come mi devo comportare?


PS:
codice:
img {
	border: 0px; /* makes sure linked images do not have a border */
      text-decoration: none;
}