It's usually automatic. However, you have some very non-standard HTML/css here:
HTML Code:
. . . d" style="height: 20px"><a href="feste.htm"><b>FESTE</b></a></td>
<td class="menutoptd" style="height: 20px"><a href="matrimoni.htm"><b>
MATRIMONI</b></a></td>
</tr>
</table></center></body>
<body><center />
<div id="fadeshow1" style="position: absolute; top: 200px; width: 810px; height: 610px;">
</div>
</body>
Only one body allowed per page. But that's not the real problem. Using the <center> tag has been deprecated because it can often have unexpected consequences. It does here. If you change the above to:
HTML Code:
. . . d" style="height: 20px"><a href="feste.htm"><b>FESTE</b></a></td>
<td class="menutoptd" style="height: 20px"><a href="matrimoni.htm"><b>
MATRIMONI</b></a></td>
</tr>
</table></center>
<div id="fadeshow1" style="position: absolute; top: 200px; width: 810px; height: 610px; left: 50%; margin-left: -405px;">
</div>
</body>
things will work out much better.
Bookmarks