Hello,
I’ve read som many solutions for this and all are telling me I need to resize my image, however, I am not sure what would be the size.
I just want my image to be the same on desktop and mobile.
What can I do?
Thanks
Hello,
I’ve read som many solutions for this and all are telling me I need to resize my image, however, I am not sure what would be the size.
I just want my image to be the same on desktop and mobile.
What can I do?
Thanks
Please Go to Online Store → Themes → Edit code → Assets → theme.scss.liquid and paste this code at the end of this file.
@media only screen and (max-width: 600px) {
.hero .hero__image {
object-fit: contain;
}
}