House number addition box not alligned with housenumber box
-
Hi Xtemos,
On the my account page/ adress in both the ‘invoice adres’ and the ‘alternative sending adres’, the box of the housenumber addition field is not alligned with the housenumber field. (see attachments)
I had the same problem on the checkout page, but you gave me an addition to fix this by inserting code in the csss field.
Thanks in advance!
Martijn
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
#billing_house_number_field,
#shipping_house_number_field{
width: 47%;
float: right;
}
#billing_house_number_suffix_field,
#shipping_house_number_suffix_field,
#billing_email_field {
width: 100%;
}
And this part is for mobile devices
#billing_house_number_field,
#shipping_house_number_field{
width: 100%;
float: none;
}
Regards