Hello,
how can make product image in left side in large screen. Like this
right now
Url: https://www.zisthi.com/
pass:Zisthi0206
Hello,
how can make product image in left side in large screen. Like this
right now
Url: https://www.zisthi.com/
pass:Zisthi0206
Hi @Sohan2198
check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
@media only screen and (min-width: 749px){
media-gallery[data-desktop-layout="thumbnail_slider"] {
display: grid;
grid-template-columns: .5fr 2fr;
gap: 10px
}
slider-component.slider-mobile-gutter {
grid-column: 2;
}
.product--thumbnail_slider .thumbnail-slider {
display: grid;
grid-template-columns: auto;
grid-column: 1;
grid-row: 1;
align-self: baseline;
}
.thumbnail-slider .thumbnail-list.slider--tablet-up {
height: auto;
flex-direction: column;
justify-content: center;
}
.product--small .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
width: 80%;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe
Your code is working fine but the we are face one more problem. The product image cross the main product image height. create lot of space.
please check and resolve.