Display form checkboxes in an orderly table
From Semantic MediaWiki Community Wiki
Extension: Semantic Forms Description:
You can get checkboxes in your forms to display in a nice table format by adding the following to your "MediaWiki:Common.css" page:
label.checkboxLabel {
width: 200px;
display: block;
float: left;
}
Radiobuttons also:
label.radioButtonItem {
width: 200px;
display: block;
float: left;
}
