quel poco che so di codice è stato imparato con tanta fatica. cmq mi difendo.
riporto intanto un po i codici che ritengo siano rilevanti per capire l'inghippo sulla piattaforma mac.
ricordo che il problema si trova fra il frame top e il frame right, che visualizza su piattaforma safari mac uno spazio come se interpretasse di avere un bordo che invece non ha
sul codice del frame iniziale c'è una riga che dovrebbe non essere ortodossa, magari è la causa del tutto, ma a logica non riesco a capirle il motivo. la riga in questione è questa:
"<frameset cols="200,*,200" frameborder="NO" border="0" framespacing="0">"
vorrei semplicemente potere risolverlo senza dovere buttare il tutto
prendo in considerazione il suggerimento di utilizzare i div
non li ho mai lavorato, devo capire come riuscire a ottenere lo stesso effetto con loro
grazie cmq dell'interesse


codice css:
A:link, A:visited {
text-decoration: none;
color: #999999;
}
A:hover {
text-decoration: none;
color: #0099CC;
}
.header {
font-family: arial;
font-size: 15px;
font-weight: normal;
color: #0099CC;
text-decoration: none;
}
.header1 {
font-family: arial;
font-size: 15px;
font-weight: normal;
color: #999999;
text-decoration: none;
}
.bcktop {
background-image: url(../imgs/general/bcktop.png);
}
.bckright {
background-image: url(../imgs/general/bckright.png);
}
.bckleft {
background-image: url(../imgs/general/bckleft.png);
}




codice frame iniziale:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title> xxx</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset cols="200,*,200" frameborder="NO" border="0" framespacing="0">
<frame src="left.htm" name="leftFrame" scrolling="no" noresize>
<frame src="vassoio.htm" name="vassoioFrame">
<frame src="right.htm" name="rightFrame" scrolling="no" noresize>


<noframes>
<body leftmargin="0" rightmargin="0" topmargin="0">
</body></noframes>
</html>



codice frame vassoio:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset rows="150,*" frameborder="NO" border="0" framespacing="0">
<frame src="top.htm" name="topFrame" scrolling="NO" noresize >
<frame src="main.htm" name="mainFrame">
</frameset>
<noframes>
<leftmargin="0" topmargin="0" rightmargin="0">
</body>
</noframes>
</html>



codice frame right (quasi identico al frame left):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="header.css" rel="stylesheet" type="text/css">
</head>

<body bgcolor="#E9E7CF" leftmargin="0" rightmargin="0" topmargin="0">
<table width="300" border="0" cellpadding="0" cellspacing="0">

<tr>
<td width="300" height="75" valign="top" bgcolor="#E9E7CF"></td>
</tr>
<tr>
<td height="550" valign="top" class="bckright"></td>
</tr>
</table>
</body>
</html>



codice frame main:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../fortis.css" rel="stylesheet" type="text/css">
<link href="../fortis_header.css" rel="stylesheet" type="text/css">
</head>

<body background="../imgs/general/bckmain.png" leftmargin="0" rightmargin="0" topmargin="0">
<table width="11698" border="0" cellpadding="0" cellspacing="0">

<tr>
<td width="587" height="400" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">

<tr>
<td width="583" height="400" valign="top"><div align="right">[img]../imgs/p_beauty/Asuka1_luci.jpg[/img]</div></td>
<td width="4" valign="top"></td>
</tr>
</table></td>
ecc...
</table></td>
</tr>
</table>
</body>
</html>