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
Whenever I transfer to mobile view, my banner image is always cropped. But, its alright with my desktop view. I would like to fix this. Please help.
Hello @kakajdiaz
Go to online store ---------> themes --------------> actions ------> edit code------->Theme.css
add this code at the end of the file.
@media only screen and (max-width: 800px) {
#shopify-section-slideshow img, .index-slideshow-section img {
height: 240px;
}
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
I cant find theme.css .. only this one:
Hello @kakajdiaz
I have checked your problem, you can create separate images for mobile view and desktop view, this will be a proper solution for this.
Please check the Reference below
Is that the only solution that we can do?