-
super4tw
billing_last_name and billing_first_name columns. How can I get to show only one column on mobile devices?
billing_address_1 and billing_phone. How can I get to show only one column on mobile devices?
-
super4tw
Found the right way
.form-row-wide,
.form-row-first,
.form-row-last {
clear: both !important;
float: none !important;
width: 100% !important;
margin-right: 0 !important;
}@media (min-width: 368px){
.form-row-first {
width: 47% !important;
float: left !important;
margin-right: 5.8% !important;
clear: both !important;
}
.form-row-last {
width: 47% !important;
float: right !important;
margin-right: 0 !important;
clear: none !important;
}
} -
Glad to hear you found a solution
- You must be logged in to reply to this topic.