Aligning the VAT input field on Ultimo Magento 2 Theme
Erstellt bei: 08.07.2019 | Aktualisiert unter: 12.07.2023
To fix the display issue on the register page of the Ultimo Theme, you can add this to your _custom.less file in path YOUR_MAGENTO_INSTALL_DIRECTORY/app/design/frontend/YOUR_VENDOR_NAME/YOUR_THEME_NAME/web/css/_custom.less.
.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__m) {
#gw-euvat-field label {
padding:6px 15px 0 0;
text-align: right;
width:25.8%;
box-sizing: border-box;
float:left;
}
#gw-euvat-field div.control {
float:left;
width: 74.2%;
}
}
Kategorien: EU VAT Enhanced (M2)