Ciao a tutti, come da titolo, mi ritrovo ad avere dei problemi con la traduzione della mia pagina html da parte dei tre browser principali (Explorer,Mozilla,Chrome). Difatti questi visualizzano il mio codice in maniera diversa, posto il codice della mia pagina principale
codice:
<html>
<head>
<link href="css/jquery.pictureMenu.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.pictureMenu.js" type="text/javascript"></script>
<script src="js/jquery.animations.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".MainMenu1").pictureMenu();
$(".MainMenu2").pictureMenu({
animateTime: 600,
menuInactiveHide: 0.2,
menuActiveWidth: 600,
useMenuActiveWidth: true
});
$(".MainMenu3").pictureMenu({
menuInactiveHide: 0.5,
menuBorder: 0,
useMenuWidth: false
});
});
</script>
</head>
<body>
<table class="corpo">
<tr background="images/up.png">
<td colspan=2 height="100"></td>
</tr>
<tr>
<td>
<center>
[img]images/logo_home.png[/img]
</td>
<td>
<div id="Wrapper">
<div class="MainMenu3">
<div onmouseover="this.style.cursor='pointer';">
[img]images/menu-1.png[/img]
[img]images/text-1.png[/img]
</div>
<div onmouseover="this.style.cursor='pointer';">
[img]images/menu-2.png[/img]
[img]images/text-2.png[/img]
</div>
<div onmouseover="this.style.cursor='pointer';">
[img]images/menu-3.png[/img]
[img]images/text-3.png[/img]
</div>
<div onmouseover="this.style.cursor='pointer';">
[img]images/menu-4.png[/img]
[img]images/text-4.png[/img]
</div>
<div onmouseover="this.style.cursor='pointer';">
[img]images/menu-5.png[/img]
[img]images/text-5.png[/img]
</div>
<div onmouseover="this.style.cursor='pointer';">
[img]images/menu-6.png[/img]
[img]images/text-6.png[/img]
</div onmouseover="this.style.cursor='pointer';">
<div>
[img]images/menu-6.png[/img]
[img]images/text-6.png[/img]
</div>
</div>
</div>
</td>
</tr>
<tr>
<td background="images/login.png" width="200" height="300">
Username:
<input type="text" name="user" size="15">
Password:
<input type="password" name="pswd" size="15">
</td>
<td>
<table class="news">
<tr>
<td>[img]images/news.png[/img]</td>
</tr>
<tr>
<td><center>
</td>
</tr>
<tr>
<td>News secondarie</td>
</tr>
</table>
</td>
</tr>
<tr background="images/down.png">
<td colspan=2 height="100"></td>
</tr>
</table>
</body>
</html>