Originariamente inviato da xproj
prova a nascondere un div con dentro solo del testo, togliendo la tabella?
Non ho capito

Mi posti il tag <html>?
Eccolo

codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Titolo</title>

<style type="text/css">
#cache { position:fixed; right: 0; bottom: 0; z-index:10; visibility:hidden;}
</style> 
<div id="cache">
<table width=400 bgcolor=#000000 border="0" style="border-width:3; border-
color:000000; border-style:solid;" cellpadding=0 cellspacing=0> <tr>
<td align="center" valign=middle>
<table width=100% bgcolor=#ffff00 border="0" cellpadding=0 cellspacing=0>
<tr>
<td align="center" valign=middle><font face="verdana" size=3
color=#000000>
Caricamento in corso</font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<script type="text/javascript" language="javascript">
function cacheOff()
{
document.getElementById("cache").style.display = "none";
}
</script>
<body onLoad="cacheOff()">

</head>
</body>
</html>