How to hide left and right border on all view (Mobile/desktop/tablets)
-
HI TEAM,
I have enabled border layout but i don’t want to show left & right border on all devices like mobile view, tablet and desktop.
How to hide it https://prnt.sc/m1c9pg
Attachments:
You must be
logged in to view attached files.
Hello,
Add this code to the Theme Settings > Custom CSS > choose the devices you want to hide the border:
body .products-bordered-grid:not(.elements-list) .product {
border-right-color: transparen;
border-left-color: transparent;
}
body .products-bordered-grid.elements-grid{
border-color: transparent;
}
Best Regards