1

I am trying to make the checkbox's closer together... without so much space in between vertically.

I'm using a cls to make the font size smaller which is working properly. Any ideas?

.my-class .x-form-cb-label 
{
font-size: xx-small;
font-weight: bold;    
}

here is a pic of the spacing that is too large enter image description here

solarissf
  • 1,199
  • 2
  • 23
  • 58

1 Answers1

2

I created my css class, declared margin-bottom: -4px; (you can pick your size) and attached it to checkbox components with help of cls config. Here's the FIDDLE
check index.html for css class.

beso9595
  • 1,146
  • 3
  • 10
  • 16