How to remove nuimbers/arrows beneath multicolun on mobile?

Topic summary

A user seeks to remove numbers/arrows displayed beneath multicolumn images on product pages when viewed on mobile devices.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the active theme
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
@media only screen and (max-width: 749px) {
  .slider-buttons {
    display: none !important;
  }
}
  • Save the changes

The solution was confirmed successful by the original poster, effectively hiding the slider navigation buttons on mobile viewports.

Summarized with AI on November 14. AI used: claude-sonnet-4-5-20250929.

https://toltano.com/products/mia-peluche

How doi I remove the numbers/arrows thats displayed beneath the multicolumn images when viewing this product page on mobile?

Much appreciated

1 Like

Hi @nvisibl1

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){ 
.slider-buttons {
    display: none !important;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

brilliant, thank you :slightly_smiling_face: