How can I fix my sidebar that is currently above my product info on mobile?
Would rather have product information and add to cart above sidebar on mobile.
Also, when viewing my cart in mobile, I cannot add quantity, delete product…looks different on mobile.
Hey wesleysoccer!
Please try adding following code to Quick CSS
@media only screen and (max-width: 480px) {
.single-product-summary {
float: left;
}
.single-product-main-image {
float: right;
}}
Regards,
Yigit
The quantity option is not showing on computer as well…see cart page after adding product.
http://cl.ly/image/34440L2f2r2Q
it should have “+” and “-” option next to number…I need this fixed. thanks.
Hi!
Which version of WooCommerce are you using? If not the latest, please update it and try deactivating all active plugins except for WooCommerce and check if that helps
Best regards,
Yigit
latest version of woo. did try to deactivate plugins..no fix.
really need help with my questions….
Hey!
The + and – options are only available if that product can have multiples.
Regards,
Devin
Thanks. Last thing: How do I delete a product on cart page? the {x} delete button is not there on mobile view?
here is the enfold demo view (mobile) http://cl.ly/image/391W3a030338
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
.product-remove {
display: table-cell !important;
}
}
@media only screen and (max-width: 479px) {
th.product-remove {
display: none !important;
}
}
Result:
Cheers!
Josue