Originalmente inviato da
KeeperArt
Se puoi linkare la pagina in questione, sicuramente potremo aiutarti meglio..
Non mi sembra risieda in quanto postato il problema.
Saluti
Vi posto il source della pagina, non è online
Codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Donadono.it - Home</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="keywords" content="" >
<meta name="description" content="" >
<link rel="stylesheet" href="http://localhost/negozio/gfx/style.css" type="text/css">
<link rel="stylesheet" href="http://localhost/negozio/gfx/modal-message.css" type="text/css">
<script src="http://localhost/negozio/gfx/general.js" type="text/javascript"></script>
<script src="http://localhost/negozio/gfx/prototype.js" type="text/javascript"></script>
<script src="http://localhost/negozio/gfx/modal-message.js" type="text/javascript"></script>
<script type="text/javascript">
function menuGet(path, params, width, height)
{
var url = 'http://localhost/negozio/' + path + '?' + params;
new Ajax.Request(url, {
method: 'get',
onSuccess: function(transport) {
messageObj = new DHTML_modalMessage();
messageObj.setSize(width,height);
messageObj.setHtmlContent(transport.responseText);
messageObj.display();
}
});
}
function menuClose()
{
messageObj.close();
}
</script>
</head>
<body leftmargin="0" topmargin="0" onload="divLoading(); correctPNG();">
<center>
<table width="850" border="0" cellspacing="0" cellpadding="0" class="pageBody">
<tr>
<td width="100%" valign="top" align="center">
<table width="95%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10" height="29" class="headAngSx"> </td>
<td height="29" class="headNavBar"><a href="http://localhost/negozio/index.php" class="navbar">Home</a> • <a href="http://localhost/negozio/user.accedi.php" class="navbar">Accedi</a> • <a href="http://localhost/negozio/user.registrati.php" class="navbar">Registrati</a> • <a href="#" onClick="javascript:menuGet('ajax.getMenu.php','menu=catalogo', '750', '750');" class="navbar">TestWindow</a></td>
<td width="10" height="29" class="headAngDx"> </td>
</tr>
</table>
<br />
<img src="http://localhost/negozio/gfx/marchio.png" alt="Donadono.it" border="0">
<br />
<br />
<div class="divPage" align="left">
</div>
<br />
<table width="95%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10" height="29" class="footAngSx"> </td>
<td height="29" class="footNavBar" valign="middle">Copyright 2007 © Donadono.it</td>
<td width="10" height="29" class="footAngDx"> </td>
</tr>
</table>
</td>
</tr>
</table>
</center>
<div id="divloading"><img src="http://localhost/negozio/gfx/loading.gif" alt="Caricamento pagina" border="0"> Caricamento pagina... Attendere...</div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-2198113-1";
urchinTracker();
</script>
</body>
</html>
Il div in questione non è dichiarato nel codice della pagina, ma viene generato al volo da js e messo a video
La cosa che mi fa strano è che comunque Firefox lo interpreta correttamente mentre IE no... (cioè non tanto strano)...
edit: Comunque al div creato con js, viene applicato la definizione del css che ho postato sopra...