Bonjour,
Je suis novice dans dans la programmation et je ne souhaite pas devenir un grand programmateur, mon but est de faire un site à peu près joli pour mon association....
Mon problème est que ce code fonctionne très bien au niveau de la mise en page sur Firefox mais pas du tout sur IE..
MERCI D'AVANCE POUR VOTRE AIDE
Modifié par Noman02 (02 Feb 2006 - 13:08)
Je suis novice dans dans la programmation et je ne souhaite pas devenir un grand programmateur, mon but est de faire un site à peu près joli pour mon association....
Mon problème est que ce code fonctionne très bien au niveau de la mise en page sur Firefox mais pas du tout sur IE..
MERCI D'AVANCE POUR VOTRE AIDE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<title>Photos du tournoi du 9 et 10 juillet 2005</title>
<style type="text/css">
<!--
html, body {
margin:0%;
padding:0%;
font-family: Comic Sans MS;
color: #000000;
}
#arriere {
position: absolute;
left: 0%;
top: 0%;
width : 100%;
height:100%;
}
#arriere table {
position: absolute;
top: 2%;
left: 2%;
width:96%;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: none;
color: #999999;
}
a:active {
text-decoration: none;
color: #000000;
}
body,td,th {
font-size: 110%;
}
-->
</style>
<script language=javascript>
photo = 1
nbphoto = 19
function newSlide(direction) {
if (document.images) {
photo = photo + direction
if (photo < 1) { photo = nbphoto }
if (photo > nbphoto) { photo=1 }
document.slider.src = "images/tour0705/slide" + photo + ".jpg" }
}
</script>
<body>
<div id="arriere">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10%"><center><a href="javascript:newSlide(-1)"><img alt="image précédente" src="images/tour0705/precedent.jpg" width="90%"></a></center></td>
<td width="80%"><center><img alt="Photos du tournoi de juillet 2005" src="images/tour0705/slide1.jpg" name=slider width="100%"></center></td>
<td width="10%"><center><a href="javascript:newSlide(1)"><img alt="image suivante" src="images/tour0705/suivant.jpg" width="90%"></a></center></td>
</tr>
<tr>
<td colspan="3"><div align="center"><a href="tour0705.php">Retour</a></div></td>
</tr>
</table>
</div>
</body>
</html>
Modifié par Noman02 (02 Feb 2006 - 13:08)