I’m having an issue on mobile view where the radio buttons overlap shipping options in the cart
Hey designmek,
Thank you for the inquiry.
Please add this css code to adjust the space between the radio buttons and the input label.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.wp-block-woocommerce-cart-order-summary-shipping-block .wc-block-components-radio-control .wc-block-components-radio-control__input {
margin-left: -10px;
}
}
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
Ismael
worked perfectly, i went with -20px for good measure.
Did not need to do the following:
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Thanks!