Field label position for List Components

Requesting native option to position Field Labels in List Components the same way it’s possible in Forms

1 Like

For now, if you’d like to display the fields inline, you can add the following CSS to the page.

.form-group{
    display: inline-flex;
    float: left;
    clear: both;
}
.form-group label{
    margin-right: 8px;
}

2 Likes

This works perfectly @Chem.

Thank you - I will use this a lot.

2 Likes