Hi there,
- Ah, it sounds like it’s happening in all woocommerce pages, in that case, let’s make the CSS more global. Please change this CSS,
.woocommerce-checkout .backstretch img {
visibility: hidden;
}
.woocommerce-checkout .backstretch {
background: #fff;
}
to this
body.woocommerce-page .backstretch img {
visibility: hidden;
}
body.woocommerce-page .backstretch {
background: #fff;
}
- The cause of this issue is your existing custom CSS,
.woocommerce .cart .actions .coupon input[type="text"] {
width: 350px;
float: left;
margin-right: 20px;
}
If it’s intended for desktop then it should be like this
@media ( min-width: 980px ) {
.woocommerce .cart .actions .coupon input[type="text"] {
width: 350px;
float: left;
margin-right: 20px;
}
}
Thanks!