Hi,
How can I move my slide counter (circled in red) to the bottom left of image? I’m using Dawn theme.
I cant figure it out.
Hi,
How can I move my slide counter (circled in red) to the bottom left of image? I’m using Dawn theme.
I cant figure it out.
Hi @faecom1
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
.product .product__media-wrapper .slider-buttons {
justify-content: flex-start;
}
Hi @faecom1 ,
Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:
@media (max-width: 749px) {
.slider-buttons.no-js-hidden.quick-add-hidden {
justify-content: flex-start;
left: -15px;
}
}
Hello @faecom1
.product__media-wrapper .slider-buttons {
justify-content: start !important;
}