Formbuilder: aanpassen output radio buttons [opgelost]
Posted: Mon Sep 09, 2013 12:51 pm
Momenteel spuwt formbuilder volgende code uit voor radiobuttons:
Dit zou moeten veranderen naar:
maar ik zie niet hoe je dit kan aanpassen.
Iemand ervaring mee?
Code: Select all
<label>Type bouw*</label>
<div>
<input name="mc9240fbrp__82" value="1" id="fbrp__82_1_0" type="radio">
<label for="fbrp__82_1_0">Nieuwbouw</label>
</div>
<div>
<input name="mc9240fbrp__82" value="2" id="fbrp__82_1_1" type="radio">
<label for="fbrp__82_1_1">Renovatie</label>
</div>
Code: Select all
<label>Type bouw*</label>
<div>
<label for="fbrp__82_1_0">
<input name="mc9240fbrp__82" value="1" type="radio" id="fbrp__82_1_0" style="display:none;">
<span class="custom radio checked"></span> Nieuwbouw
</label>
<label for="fbrp__82_1_1">
<input name="mc9240fbrp__82" value="2" type="radio" id="fbrp__82_1_1" style="display:none;">
<span class="custom radio"></span> Renovatie
</label>
</div>
Iemand ervaring mee?