Editor format question on "create a new entry"

Editor format question on "create a new entry"

foo.cheungfoo.cheung Posts: 4Questions: 3Answers: 0

When I create a new entry by default on the "create a new entry" form all fields and labels are in one column.

Can someone show me or point how to create more than one column in a given row?

Thanks

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,840Questions: 1Answers: 10,134 Site admin
    Answer ✓

    You can use CSS to achieve a multi-column layout. For example you might add:

        div.DTE_Body div.DTE_Body_Content div.DTE_Field {
            float: left;
            width: 50%;
            box-sizing: border-box;
            clear: none;
            padding: 5px 2%;
        }
    

    i.e. have each field 50% width and float left.

    Allan

This discussion has been closed.