Make BooleanField display a larger checkbox in Django
boolean, checkbox, django, field, resize
Solution
You can try doing this using css, but the thing is very difficult: http://www.456bereastreet.com/lab/form_controls/checkboxes/
When you create a class in css you can add it to your input using widgets, something like:
field = forms.BooleanField(widget=forms.CheckboxInput(attrs={'class':'your_class'}))
Problem
So I am creating a website using Django templates, forms etc. One thing I've noticed though is that the checkboxes I create via BooleanFields are too small. Any idea how to make the thing bigger?