Group checkboxes in editor form

Group checkboxes in editor form

daniegloydaniegloy Posts: 35Questions: 12Answers: 5

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

Answers

  • allanallan Posts: 61,744Questions: 1Answers: 10,111 Site admin
    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

  • daniegloydaniegloy Posts: 35Questions: 12Answers: 5

    You Are Awsome!!! Thank You!!

  • daniegloydaniegloy Posts: 35Questions: 12Answers: 5

    Would it be possible to add table elements to them for alignment?

  • daniegloydaniegloy Posts: 35Questions: 12Answers: 5

    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!

This discussion has been closed.