Checkboxes
HTML
  <input type="checkbox" id="custom_checkbox_0" name="ids[]" value="0"/>
  <label for="custom_checkbox_0">Checkbox 0</label>
HTML
  <label><input type="checkbox" id="custom_checkbox_5" name="ids[]" value="0"/> Checkbox 5</label>
JS
  $("[type=checkbox]").custom_form();
Radios
HTML
  <input type="radio" id="custom_radio_0" name="values[]" value="0"/>
  <label for="custom_radio_0">radio 0</label>
JS
  $("[type=radio]").custom_form();
HTML
  <label><input type="radio" id="custom_radio_5" name="values[]" value="0"/> radio 5</label>
JS
  $("[type=radio]").custom_form();
Selects
HTML
  <label for="custom_select_1">Country</label>
  <select id="custom_select_1">
    <option value="" selected="selected">Select Country</option> 
    <option value="...">...</option> 
  </select>
JS
  $("select").custom_form();
HTML
  <div style="width:100%">
    <div style="width:49%; margin-right:1%; float:left">
      <label for="custom_select_3" style="display:block">Country</label>
      <select id="custom_select_3" style="width:100%">
        <option value="" selected="selected">Select Country</option> 
        <option value="United States">Spain</option> 
        <option value="United States">United States</option> 
        <option value="United Kingdom">United Kingdom</option> 
        <option value="Afghanistan">Afghanistan</option> 
        <option value="Albania">Albania</option> 
        <option value="Algeria">Algeria</option> 
        <option value="American Samoa">American Samoa</option> 
        <option value="Andorra">Andorra</option> 
        <option value="...">...</option> 
      </select>
    </div>

    <div style="width:49%; margin-left:1%; float:left">
      <label for="custom_select_4"  style="display:block">Credit Card</label>
      <select id="custom_select_4" style="width:100%">
        <option value="" selected="selected">Select Credit Card</option> 
        <option value="United States">Visa</option> 
        <option value="United States">MasterCard</option> 
        <option value="United Kingdom">American Express</option> 
        <option value="...">...</option> 
      </select>
    </div>
  </div>
JS
  $("select").custom_form({
    responsive_select:true
  });
File
HTML
  <label for="custom_file_1">Attachment</label>
  <input id="custom_file_1" type="file" style="width:400px"/>
JS
  $("[type=file]").custom_form();
HTML
  <div style="width:100%">
    <div style="width:49%; margin-right:1%; float:left">
      <label for="custom_file_2">Attachment</label>
      <input id="custom_file_2" type="file" style="width:100%"/>  
    </div>
  
    <div style="width:49%; margin-left:1%; float:left">
      <label for="custom_file_3">Attachment</label>
      <input id="custom_file_3" type="file" style="width:100%"/>  
    </div>
  </div>
JS
  $("[typ=file]").custom_form({
    responsive_file:true
  });