Hi everyone,
I’ve added this CSS to my base.css to turn the mobile thumbnail slider into a centered dot‑style pagination:
@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;
}
/* Hide thumbnail navigation arrows */
.product .thumbnail-slider .slider-button {
display: none !important;
}
}
Visually it works great, the thumbnails are dots, they are centred in the middle, and arrows are hidden. However, when changing product images on mobile, the dot indicator updates about 1 second later than the image change. Is there a way to make these “dots” respond instantly when the slider changes?
Any suggestions on how to improve the responsiveness or an alternative approach that doesn’t lag would be hugely appreciated!
Thanks ![]()
Website: crepscity.com