Envy Theme - Remove Slideshow Pagination Dots

Solved

Envy Theme - Remove Slideshow Pagination Dots

Nick_Clement
Tourist
3 0 2

Hi, 

I'd like to hide/remove the pagination dots on the product page at mobile view, as it shows far too many, or ideally just show one row/or a reduced number (3/5).

https://decadorn.com/products/faceted-gemstone-necklace-gold-fill?_pos=1&_sid=234ea04d4&_ss=r&varian...

I’ve tried a few things - i thought this might work, alas no luck. There’s no way of doing it in the theme customisation.

.swiper-pagination swiper-pagination-clickable swiper-pagination-bullets
{display: none; visibility:hidden;}

and also tried filling in the spaces with a hyphen

.swiper-pagination-swiper-pagination-clickable-swiper-pagination-bullets
{display: none; visibility:hidden;} 

Could anyone help? 

Thanks in advance.

 

img_1114_720.png

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

This is an accepted solution.

Hi @Nick_Clement 

check this one. 

 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media screen and (max-width: 767px) {
    .product-single__thumbnails:not(.product-single__thumbnails--carousel) .swiper-pagination-bullets {
        display: none;
    }
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720041235737.png

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

This is an accepted solution.

Hi @Nick_Clement 

check this one. 

 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media screen and (max-width: 767px) {
    .product-single__thumbnails:not(.product-single__thumbnails--carousel) .swiper-pagination-bullets {
        display: none;
    }
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720041235737.png

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Nick_Clement
Tourist
3 0 2

Thank you very much, that's worked nicely. How now to I add a little bit of margin to the product title so I can move it down say 10px?

Screenshot 2024-07-03 at 22.32.32.png