Hop hop ...



Un truc tout bête mais après avoir cherché et essayé un paquet de truc je n'y arrive toujours pas Smiley fache ...

J'ai un table et dans ma 1ère cellule y'a mes rubriques ...

La cellule fait 520 de large et 15 de haut ...

Je veux faire un menu qui change sur une page tout en conservant l'alignement original ...

Pour l'instant j'ai le texte "retour aux miniatures" collé à " Smiley photographique "...

http://img399.imageshack.us/img399/5035/menuzc7.jpg

le CSS
.menu {background-color: #CCCCCC;text-align: center; color: #006600; vertical-align:top; font-weight:bold}
.menu2 {background-color:#CCCCCC; padding-left:20px;color: #006600; vertical-align:top; font-weight:bold}


la page menu.php que j'insère en include
<table align="center" class="main" height="550" width="520" border="0" cellpadding="0" cellspacing="0">
<tr><td  class="menu" height="15">
<a href="velbain.php"><h1>[Velbain]</h1></a>&nbsp;&nbsp;&nbsp;
<a href="phoooto.php">[Photographique]</a>&nbsp;&nbsp;&nbsp;
<a href="num.php">[Num&eacute;rique]</a>&nbsp;&nbsp;&nbsp;
<a href="gra.php?num=1">[Graphique]</a>&nbsp;&nbsp;&nbsp;
<a href="blog.php">[Bloguistique]</a>&nbsp;&nbsp;&nbsp;
<a href="link.php">[Guique]</a>
</td></tr>


la page menu2.php aussi insérée en include
<table align="center" class="main" height="550" width="520" border="0" cellpadding="0" cellspacing="0">
<tr><td  class="menu2" height="15">
<a href="velbain.php"><h1>[Velbain]</h1></a>&nbsp;&nbsp;&nbsp;
<a href="phoooto.php">[Photographique]</a>
<a href="diapo.php?cat=<?php echo $cat ; ?>">retour aux miniatures</a>
</td></tr>


Je sens le truc tout bête Smiley biggol ...

Merci d'avance à vous .... Smiley biggrin
Modifié par Velbain (02 Apr 2008 - 21:28)
hop hop ...


J'ai donc mis ça en CSS
.menu {background-color: #CCCCCC;text-align: center; color: #006600; vertical-align:top; font-weight:bold}
.menu2 {background-color:#CCCCCC; padding-left:20px;color: #006600; vertical-align:top; font-weight:bold}
a.minia {float:right; display:inline}


et ça en HTML
<table align="center" class="main" height="550" width="520" border="0" cellpadding="0" cellspacing="0">
<tr><td  class="menu2" height="15">
<a href="velbain.php"><h1>[Velbain]</h1></a>&nbsp;&nbsp;&nbsp;
<a href="phoooto.php">[Photographique]</a>
<a  class="minia" href="diapo.php?cat=<?php echo $cat ; ?>">retour aux miniatures</a>
</td></tr>


ça me donne ça : http://jeanluc.bainvel.club.fr/2WF/visio.php?num=16&cat=ride2&menu=2

C'est pas "inline" Smiley fache ...