Home > Forum > Forms > arrange fields in the form

arrange fields in the form
0

hi there,

how i can modify the format of the form (default) to custom form by placing the text field first and then the name of the field., see the attachment for mor explanation

please assist.

MVP

Hi,
You could try to achieve that with Global CSS styles, and levereging the fact, that attributes are displayed as display: table.

This snippent placed in the Global CSS will turn all attributes, which are inside any group - right to left (see attachment).

.main-panel.group {
direction: rtl;
}

You should be able to use more specific selector, or even javascript to apply it onto a specific element rather than almost whole form.