Problème de menu image

Résolu
Melissia -  
 MELISSIA33 -
Bonjour,

je suis en train de faire un site en HTML, quand je crée mon menu juste en texte, je n'ai pas de problème, par contre quand je le crée avec des images, la dernière image et en décaler vers le bas alors que j'ai tout alignée donc j ai triché en rajoutant une fausse image en dernier qui ne se voit pas. Et l'autre problème que j'ai c est que ça me créé des points que j'aimerais ne pas avoir.

Comment cela se fait-il ?

mon code :

<center>  
<table>
<div class="header">  

 <div style="text-align: center">
 <ul id="nav">
<li class="active"><td></a> <a  Accueil.html"><img src="gaelle/rien.gif"width="50" height="45"></a></li>
<li><td><a "gaelle.html"><img src="gaelle/accueil.gif"width="250" height="45"></a></li>
<li><td><a href= "gaelle2.html"><img src="gaelle/country.gif"width="250" height="45"></a></li>
<li><td><a href= "gaelle3.html"><img src="gaelle/cours.gif"width="250" height="45"></a></li>
<li><td><a href= "gaelle4.html"><img src="gaelle/inscription.gif"width="250" height="45"></a></li>
<li><td><a Accueil.html"><img src="gaelle/rien.gif"width="50" height="45"></a></li>
</ul>

</div>
</table>
</center>   



A voir également:

2 réponses

Utilisateur anonyme
 
Bonsoir, c'est normale que ça affiche des points vue que tu demande d'afficher des points..... (<li>)

Je suppose que c'est un copié collé ?

Essai ceci :

<center> 
<div class="header">   
<table>
<tr>
 <td><a href="Accueil.html"><img src="gaelle/rien.gif"width="50" height="45"></a></td>
 <td><a href="gaelle.html"><img src="gaelle/accueil.gif"width="250" height="45"></a></td>
 <td><a href= "gaelle2.html"><img src="gaelle/country.gif"width="250" height="45"></a></td>
 <td><a href="gaelle3.html"><img src="gaelle/cours.gif"width="250" height="45"></a></td>
 <td><a href="gaelle4.html"><img src="gaelle/inscription.gif"width="250" height="45"></a></td>
 <td><a href="Accueil.html"><img src="gaelle/rien.gif"width="50" height="45"></a></td>
</tr>
</table>

</div>  
</center>   
0
MELISSIA33
 
Merci de ta reponse je vais faire le test.
0
Utilisateur anonyme
 
Fait attention, j'ai édité mon message car j'avais oublié les </td>.
Dit moi si ton problème est résolu.
0
MELISSIA33
 
J'ai fait le test ça marche.

Merci beaucoup.
0