How to remove the slider counter on mobile only Taste Theme

I am using the current taste theme and have hidden thumbnails on the mobile view.

However there is still a large gap and the slider counter (e.g < 2 > ) is still showing

How do I remover the slider counter from showing and just have a 30px gap between the image and title

THANKS

Hi @underyoursink

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:

#shopify-section-template--16422966558906__main Button {
    margin-top: 0px !important;
}

And Save.

Result:

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

Hi @underyoursink ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file → Save


Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Hello @underyoursink :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

@media (max-width: 989px) {
.product__media-list .slider-button {
    margin-top: 0 !important;
}

.product__media-list .slider-counter {
    display: none !important;
}
}

The result

Hope that helps!