Hi,
I've checked your website and the issue comes from a CSS rule in your custom CSS file (`frontend_custom.css`) that limits the form width:
.hkform-horizontal {
max-width: 450px;
}
This constrains the registration form to 450px, which makes the labels (at 4/12 of that width = ~150px) too narrow for some Dutch labels like "E-mail bevestiging" or "Wachtwoord bevestigen" which then wrap to two lines.
You have two options:
1. Remove or increase the `max-width` on `.hkform-horizontal` in your custom CSS. For example, `max-width: 700px` or remove it entirely.
2. If you want to keep the narrow form but have labels on their own line above the inputs, add this CSS:
.hikashop_contentpane .hkform-group .hkcontrol-label.hkc-sm-4 {
grid-column: span 12;
text-align: left;
}
.hikashop_contentpane .hkform-group .hkc-sm-8 {
grid-column: span 12;
}
You can edit the custom CSS from the HikaShop backend via Display > Configuration > Custom CSS file.