Fixing or removing image count. Dawn theme (mobile only)

Hello, I noticed a problem on only mobile website, that photo count is not right. So there are in total 6 variants (2 pics per variant) and when you open product page it shows 8 pics only, which I don’t mind, because I made that whenever I select variant it only shows the pictures of that variant, but what I am concerned is, that the image count is off no matter what. IS THERE A WAY TO HIDE THIS IMAGE COUNT?

Link: https://erikas-mikuzis1.myshopify.com/

Psw: erikas123

Thank you!

@erikas5

Go to Assets/component-slider.css and paste below css at bottom of file.

.slider-counter
{
display: none !important;
}
1 Like

Hi,

Please go to Edit code > Assets > component-slider.css

Add the below code at the end of component-slider.css.

@media screen and (max-width: 749px) {
  .slider-counter {
    display: none;
  }
}

Hope it helps.

Thanks.

1 Like