Remove The Swipe Arrows & Image Number Below Product Images On The Product Page (Dawn Theme)

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.

URL: https://www.soundshield.co.uk/


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

1 Like

@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.

  1. From admin, go to “Online Store” → “Themes”.
  2. Click “Customize” button from the current theme.
  3. Go to product page and click “Product information” section.

  1. Locate “Custom CSS” field and paste the below code as like in the screenshot.
@media screen and (max-width: 749px) {
  .product__media-wrapper .slider-mobile-gutter .slider-buttons {
    display: none;
  }
}

  1. Save the changes.

Result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

2 Likes

Hi @BraxtonEcom

Please follow the instructions below:

  1. from Admin, Online Store => Edit code

  2. 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