Ciao e scusate il periodo di silenzio!
Questo è il codice della pagina in questione:
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Tutti in riga!</title>
<link rel="stylesheet" type="text/css" href="css/body.css">
</head>
<body style="background-color: #EE1010;">
<table cellspacing="0" cellpadding="0" style="padding-top: 5px;">
<tr>
<td>
<a href="#" target="foto_index" class=img>
[img]01_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]02_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]03_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]04_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]05_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]06_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]07_min.gif[/img]</a>
<a href="#" target="foto_index" class=img>
[img]08_min.gif[/img]</a>
</td>
</tr>
</table>
</body>
</html>
ed il css è:
codice:
A.img:link, A.img:visited, A.img:active, {
width: 67px;
height: 50px;
color: white;
float: left;
display: block;
margin-right: 4px;
margin-bottom: 3px;
border: 1px solid white;
}
A.img:hover {
color: #CCCCCC;
border: 1px dashed #CCCCCC;
}
... come già detto vorrei modificare il css in modo da far rimanere sempre affiancate le immagini sulla stessa riga senza mai andare a capo (indipendentemente, cioè, dalla larghezza della pagina).
Ciao e grazie!