Jump to content

Checkbox instead of Bullet


farhana

Recommended Posts

You have this...

<div class="controls">
 <fieldset id="jform_profile_tos" class="required radio" required aria-required="true">
  <input type="radio" id="jform_profile_tos0" name="jform[profile][tos]" value="1" required aria-required="true" />
  <label for="jform_profile_tos0">Agree</label>
  <input type="radio" id="jform_profile_tos1" name="jform[profile][tos]" value="0" checked="checked" required aria-required="true" />
  <label for="jform_profile_tos1" >No</label>
 </fieldset>
</div>

...what happens if you replace it with...

<div class="controls">
<input type="checkbox" id="jform_profile_tos0" name="jform[profile][tos]" value="1"/>
<label for="jform_profile_tos0">I Agree</label>
</div>
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...