Would there be a way to add pagination dots onto my “Dawn” theme shopify store such as the ones in the “Horizon” theme by using the edit code option?
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Best regards,
Devcoder ![]()
Thank you, went ahead and removed password, I also added some product examples.
Correct to show the number of images and which one the customer is viewing.
Went ahead and switched it over to “show thumbnails”
Please add this code to Custom CSS in Theme settings
@media (max-width: 749px) {
.product .thumbnail-slider .thumbnail-list.slider {
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
}
.product .thumbnail.global-media-settings img { display: none; }
.product .thumbnail-list__item.slider__slide {
width: 10px;
height: 10px;
}
.product .thumbnail-list__item.slider__slide .thumbnail {
border-radius: 50%;
background: #ddd;
}
.product .thumbnail-list__item.slider__slide .thumbnail[aria-current] {
background: #121212;
}
}
@asmicclothing please see in customize settings to check if you have an option to convert thumbnails to carousel for product images. If that option is unavailable then it will need code editing to put images into slider like slick slider



