Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
How could we have the carousel on dawn theme on the left of the main product image, vertically?
Our website is www.faithandyou.in
like, i dont want this:
i want like
thanks
Theme: refresh
Hello @AryavK
You need to check if your theme offers the settings to change the thumbnails position.
if they are not offering than and you are not familiar with code then you have to contact a developer to make changes for your requirement.
Thanks
Hi @AryavK !
Add this after <head> in theme.liquid and custom it !
<style>
@media only screen and (min-width: 991px) {
media-gallery.product__media-gallery {
display: grid;
grid-template-columns: 1fr auto;
}
slider-component.slider-mobile-gutter:not(.thumbnail-slider) {
margin-left: 180px;
}
slider-component.thumbnail-slider {
width: 180px;
position: absolute;
margin-top: 0;
top: 0;
left: 0;
}
.thumbnail-slider ul.thumbnail-list {
flex-direction: column;
width: 100%;
height: 400px;
}
.thumbnail-slider ul.thumbnail-list li {
width: 100% !important;
}
media-gallery.product__media-gallery .thumbnail-slider .slider-button {
display: none;
}
}
</style>
This works well but is there a way so the arrows are above and below the vertical image carousel as opposed to on the right and left of? Also, the arrows don't work if you try to click to view more images. Thank you in advance.
Hey There, Trying to implement the same style. does this work for dawn theme as well?
You can display vertically all the thumbnails: