Soucis avec un menu deroulant

Fermé
flexi2202 Messages postés 3801 Date d'inscription lundi 14 mars 2011 Statut Membre Dernière intervention 21 octobre 2024 - Modifié par flexi2202 le 1/06/2013 à 22:21
flexi2202 Messages postés 3801 Date d'inscription lundi 14 mars 2011 Statut Membre Dernière intervention 21 octobre 2024 - 2 juin 2013 à 20:20
bonsoir a tous
j ai un soucis avec un code d un menu accordeon
en fait
je n arrive pas a mettre sur la meme ligne le bouton input et un lien qui dirige vers une page externe
j ai le bouton input puis un saut de ligne
voici un morceau du code
<li><a ><label for="by_poste france"><input type="radio" onclick="majPrixPort(this.form);" value="3" name="envoi" id="by_poste france" checked="checked"><a target="_blank" href="https://www.mondialrelay.be/fr-be"><font color="noir"><b>par mondial relay l envois est securise et garanti</b></a></font><br><font color="noir">si moins  <font color="red">(si )</font ></font></label></a></li>


merci des reponses
A voir également:

2 réponses

ideal23 Messages postés 456 Date d'inscription mercredi 30 avril 2008 Statut Membre Dernière intervention 16 mai 2014 28
2 juin 2013 à 13:39
bonjour
quelques modifs:
css:
<style>
.texte{	
color:noir;
font-weight: bold;
}
.texte1{
color:red;
}
input { 
 vertical-align:middle;
}
</style>


html:
<li><a ><label for="by_poste france"><input name="envoi" type="radio"  id="by_poste france" value="3" checked="checked" onclick="majPrixPort(this.form);">
<a href="https://www.mondialrelay.be/fr-be" target="_blank" class="texte">par mondial relay l envois est securise et garanti</a><span class="texte"> si moins </span>( <span class="texte1">si </span>)</label>
</a></li>
0
flexi2202 Messages postés 3801 Date d'inscription lundi 14 mars 2011 Statut Membre Dernière intervention 21 octobre 2024 187
2 juin 2013 à 20:20
merci pour la reponse
mais cela ne fonctionne
0