Currently, all rows of custom fields have a width of 50%. When I built a custom field with text content, the registration form presented it at half width. If I could choose between half width and full width for each custom field, the registration form would appear better.
This is really necessary and should be easy to implement.
We added the legally mandatory (GDPR) “terms and conditions” checkbox but it looks really bad being limited to 50%.
I temporarily fixed this on our site with the following CSS:
// *Hacky workaround* for terms and conditions field width
.amelia-v2-booking #amelia-container .am-fs__info-form .el-form-item:last-of-type {
width: 100%;
}Please note that this should only be used as a temporary fix and just makes the last custom field 100% wide.
This could also be resolved by ticket #717 and some lines of custom CSS.
