When adding space, it adds space to both the left and right ends. How can I add space only between fields?
Is there a way to add just space between forms feilds( just between them like row gap or coloum gap)
Change ALIGNMENT to space between - and use field width to control gap (e.g. 2 fields @ 45% =10% gap).
I am having the same issue. When you you say change the alignment to space between how would you do that? There are no alignment options when working with a form.
Hi , I have used Custom CSS
Here the CSS
%root% .form-group:nth-child(1),
%root% .form-group:nth-child(3) {
margin-right: 2.5%;
width: 47.5%;
}
%root% .form-group:nth-child(2),
%root% .form-group:nth-child(4) {
margin-left: 2.5%;
width: 47.5%;
}
