Viewing 3 reply threads
You must be logged in to reply to this topic.
Hi,
my product page is not responsive. when viewed on mobile i want it to be displayed like 1 product or 1 image in 1 row just like how image element work when responsive.
how do i make it?
https://vr3services.in/woofur/bedroom/
Thanks
Hello,
Please add this code into your custom css box:
@media (max-width: 767px){
.woocommerce.columns-3 ul.products li.product {
width: 100% !important;
}}
Let us know.
Best regards!
thanks, working.
How do i remove or move the cart icon only from the home page since it is overlapping on the sliders.
Hello,
Please add this code if you want to remove it:
li#wpmenucartli {
display: none;
}
Result screenshot.
Or add this in case you want to move it:
li#wpmenucartli {
padding-left: 75px !important;
}
Result screenshot. Edit the value to your wish.
Best regards!
You must be logged in to reply to this topic.