Hi everyone,
I want the 2 pictures in the slideshow to be smaller or fit so the writeup doesn’t cut off at the edges in the slideshow section, can anybody tell me how to solve this?
Hi everyone,
I want the 2 pictures in the slideshow to be smaller or fit so the writeup doesn’t cut off at the edges in the slideshow section, can anybody tell me how to solve this?
Can you help me?
CSS for a mobile device.
Please add the following CSS to your assets/theme.scss.liquid bottom of the file.
@media only screen and (min-width: 750px) {
#shopify-section-16397781179e902aaa .slideshow {
overflow: hidden;
height: 150px;
margin-bottom: 0;
}
.slideshow__image {background-size: contain;}
}
Thanks!
Please add the following CSS to your assets/theme.scss.liquid bottom of the file.
@media only screen and (max-width: 750px) {
#shopify-section-16397781179e902aaa .slideshow {
overflow: hidden;
height: 150px;
margin-bottom: 0;
}
.slideshow__image {background-size: contain;}
}
Thanks!
Thanks that worked like a charm!