How do I get rid of the pagination dots under product photos in the impulse theme?

Solved

How do I get rid of the pagination dots under product photos in the impulse theme?

sunny96x
Explorer
51 0 18

Hey!

 

Website: https://shopstellory.com/products/sticky-inserts

 

Everything is ok on desktop view but when I change to mobile view, I can't seem to get rid of the 5 pagination dots between the product photos and thumbnails

 

This is how the website looks like right now on mobile: https://imgur.com/a/wiR5mTS

 

This is how I want to make it look on mobile: https://imgur.com/a/fad0yVj

 

Please help me someone! Thank you 🙂

Accepted Solution (1)
Moeed
Shopify Partner
7145 1932 2355

This is an accepted solution.

Hey @sunny96x 

 

Keep the previous code and add this new code in the end of theme.liquid file above </style>

.product__main-photos.aos-init.aos-animate {
    margin-bottom: 0 !important;
}

RESULT:

Moeed_0-1719236962051.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 7 (7)

Moeed
Shopify Partner
7145 1932 2355

Hey @sunny96x 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
ol.flickity-page-dots {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1719234316449.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


sunny96x
Explorer
51 0 18

Hi Moeed, is there any way to reduce the gap? it's too big

Moeed
Shopify Partner
7145 1932 2355

This is an accepted solution.

Hey @sunny96x 

 

Keep the previous code and add this new code in the end of theme.liquid file above </style>

.product__main-photos.aos-init.aos-animate {
    margin-bottom: 0 !important;
}

RESULT:

Moeed_0-1719236962051.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


sunny96x
Explorer
51 0 18

You're a legend Moeed !!!!

MurraysBoutique
Visitor
3 0 0

I am running the concept theme and I would like to know how to remove the pagination dots from product images across the whole site. What happens is on mobile only, if there are more than 15+ pictures, the pagination dots spill over (non-wrapped) and the website on mobile behaves badly where you can slide your finger to the left and right. I want it contained and I think getting rid of the dots is the easiest method. 

I have tried several edit codes and perhaps its not applicable to concept. 

 

Thank you if you can help. 

BSS-TekLabs
Shopify Partner
2401 695 831

- Here is the solution for you @sunny96x 
- Please follow these steps:

step.png

- Then find the base.css file.
- Then add the following code at the end of the file and press 'Save' to save it.

.flickity-page-dots {
 display: none !important;
}
.product__main-photos.aos-init aos-animate {
 margin-bottom: 10px !important;
}

- Here is the result you will achieve:

BSSTekLabs_0-1719235101614.png

 

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
sunny96x
Explorer
51 0 18

Hi, firstly I don't have a base.css file so I've placed the code at the bottom of my theme.css.liquid file.

Secondly, the code:

 

.product__main-photos.aos-init aos-animate {

margin-bottom: 10px !important;

}

 

Doesn't reduce the margin (check my website, you will still see the margin after using the code) - Please give me some new code that could work 🙂