Remove arrows and numbers from collection list

how do i remove the arrows and numbers from my collection list on mobile

I am using dawn theme

This is my store domain: qmpryp-cx.myshopify.com

and this is my password: chasha

Hi @ads18922

Pls follow below steps to hide the slide buttons

  1. Open your theme editor

  2. Select your collection list

  3. Past the below code to the custom css input box at the right bottom of the page

.slider-buttons {
  display: none
}

Hope this helps.

Hi @ads18922 ,

Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:

.collection-list-wrapper .slider-buttons {
    display: none !important;
}