0

I can't understand why my checkbox of bootstrap 3 is disabled in firefox firebug. I used the same code to add checkbox to my form before with same code.Here is my code.

<div class="form-group">
   <div class="col-sm-offset-2 col-sm-10">
      <div class="checkbox">
          <label>  
               <input type="checkbox"> Remember me  
          </label> 
      </div>
   </div>
</div>

Is there any issue to solve the problem? or is any coding problem? Thanks

andDev
  • 275
  • 2
  • 5
  • 15

1 Answers1

0

Hey finally i solved the issue. I used both bootstrap 3 and flat-ui so flat-ui disabled the check box. So i had to give display block in my css.

andDev
  • 275
  • 2
  • 5
  • 15