Soucis avec un menu deroulant

flexi2202 Messages postés 3640 Date d'inscription   Statut Membre Dernière intervention   -  
flexi2202 Messages postés 3640 Date d'inscription   Statut Membre Dernière intervention   -
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

2 réponses

  1. ideal23 Messages postés 505 Statut Membre 28
     
    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
  2. flexi2202 Messages postés 3640 Date d'inscription   Statut Membre Dernière intervention   190
     
    merci pour la reponse
    mais cela ne fonctionne
    0