This topic has 4 replies, 2 voices, and was last updated 3 months, 2 weeks ago ago by Luca Rossi
How do I move this element down? I need to do it using a template.
more info : https://ibb.co/sWvG8kj
Hi @coffeedog,
Please try adding this custom CSS under XStore > Theme Options > Theme Custom CSS > Global CSS:
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
display: flex;
flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > * {
width: 100%;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p#billing_iscomp_field {
order: 999;
}
If you want to apply on mobile version only, please use this code:
@media (max-width: 600px){
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
display: flex;
flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > * {
width: 100%;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p#billing_iscomp_field {
order: 999;
}
}
Hope it helps!
jIt’s better, but it opens badly
Hi @coffeedog,
We’re confused, in the first screenshot we want to move the Nakupuji na firmu text to the bottom.
Now where do you want to place that text? Please explain.
Thank you!
You must be logged in to reply to this topic.Log in/Sign up