I need help with resizing the checkboxes that are inside a table. When I try using width:###px; height:###px;
, it only seems to make them smaller, not bigger. Even when I set the values higher than the default size, the checkboxes stay the same while the div gets larger. I've also attempted setting padding to zero without success.
Below is an example of the code for my table body:
%tbody
-for foo in @foos
%tr{:class=> cycle("even","odd")}
%td{:style => "text-align:right;"}= foo.name
-for bar in @bars
%td
%input{:name =>"checkboxname", :type=> "checkbox", :checked => true, :style => "display:block;margin: 0 auto;width:20px;height:20px;padding:0px"}