I would like to remove the slide arrows and image number below the product image, so that they are no longer visible on mobile view.
e.g. it removes ‘< 1/2 >’ completely
Any advice is appreciated.
I would like to remove the slide arrows and image number below the product image, so that they are no longer visible on mobile view.
e.g. it removes ‘< 1/2 >’ completely
Any advice is appreciated.
you can place this code on theme.liquid at bottom see if it removes the arrows.
This is Noah from PageFly - Shopify Page Builder App
Please add code here to fix it:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file theme.liquid
Step 3: Add code above the tag
Hope my solution will help you resolve the issue.
Best regards,
Noah | PageFly
@BraxtonEcom Please follow below steps to remove the swipe arrows & image number below product images on the product page. Let me know whether it is helpful for you.
@media screen and (max-width: 749px) {
.product__media-wrapper .slider-mobile-gutter .slider-buttons {
display: none;
}
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
Hi @BraxtonEcom
Please follow the instructions below:
from Admin, Online Store => Edit code
Choose file base.css in Asset folder, insert this code at the end of file:
.product--thumbnail_slider slider-component.slider-mobile-gutter .slider-buttons {
display: none !important;
}
Here is result:
Hope this can help you.
Kind regards