Hi,
I’m trying to fix the issue with the collection hero image getting cropped on mobile or when the screen is narrow. How do I make the image stay square all the time and just become smaller?
Thank you
Hi,
I’m trying to fix the issue with the collection hero image getting cropped on mobile or when the screen is narrow. How do I make the image stay square all the time and just become smaller?
Thank you
Please add the following CSS code to your assets/base.css bottom of the file.
@media screen and (max-width: 749px){
.collection-hero__image-container {height: 35rem !important;}
}
Thanks!