To make a four column checkbox group (put fourColumnCheckboxGroup as styleClass on the xp:checkBoxGroup), put this in your CSS file:
.fourColumnCheckboxGroup { display: inline; }
.fourColumnCheckboxGroup td { float: left; width: 24%; }
For three columns, use 32% and so on. I use (100 / numberOfColumns) - 1 as that seems to work best cross browser.
Share and enjoy :)