I have a large number of checkboxes, they are being displayed in a vertical list, how can i edit the form structure to group them in sets, DTE_Field_Type_checkbox
This question has an accepted answers - jump to answer
A little bit of CSS should be all that is needed:
div.DTE_Field_Type_checkbox div.DTE_Field_InputControl div > div { float: left; }
It will probably need a bit of refinement :-)
Allan
You Are Awsome!!! Thank You!!
Would it be possible to add table elements to them for alignment?
div.DTE_Field_Type_checkbox div.DTE_Field_InputControl div > div { float: left; width: 50% !important;
}
Managed to accomplish it this way.. my css knowledge needs refining :p.. Thanks!
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
A little bit of CSS should be all that is needed:
It will probably need a bit of refinement :-)
Allan
You Are Awsome!!! Thank You!!
Would it be possible to add table elements to them for alignment?
div.DTE_Field_Type_checkbox div.DTE_Field_InputControl div > div {
float: left;
width: 50% !important;
}
Managed to accomplish it this way.. my css knowledge needs refining :p.. Thanks!