Custom Form Styling/HTML
-
I would like to customize my checkboxes and radio buttons and have been looking around at CSS examples but they all list the html for the styling like this:
<div class="checkboxOne"> <input type="checkbox" value="1" id="checkboxOneInput" name="" /> <label for="checkboxOneInput">Checkbox 1</label> </div>While your form outputs code like this:
<div class="checkbox"> <label for="fld_6082609_1_opt1328728"><input type="checkbox" data-label="1" data-field="fld_6082609_1" id="fld_6082609_1_opt1328728" class="fld_6082609_1" name="fld_6082609[opt1328728]" value="1"> Checkbox 1</label> </div>The main difference is the input field is INSIDE the label field rather than the label field coming after it. Is there any way i can customize how the HTML is output so i can use some coos CSS tricks to style my checkboxes and such?
Thanks!
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
The topic ‘Custom Form Styling/HTML’ is closed to new replies.