I am not able to solve the problem in which a radiobutton
appears below the other. I want to place it to the right of the first one inside the modal.
This is how it appears to me:
And here is the HTML of that part:
<div class="cc-selector">
<input checked="checked" id="visa" type="radio" name="credit-card" value="visa" />
<label class="drinkcard-cc visa" for="visa">
<img src="<?php echo $url; ?>vistas/img/plantilla/efectivo.png" class="img-responsive">
</label>
<input id="mastercard" type="radio" name="credit-card" value="mastercard" />
<label class="drinkcard-cc mastercard" for="mastercard">
<img src="<?php echo $url; ?>vistas/img/plantilla/payu.png" class="img-responsive">
</label>
</div>
I know that by CSS
I could do it by giving position: relative
and modify it as I want, but I understand that directly by HTML
must be able to also.