S
Steinar
Original poster
Member
#1
The feature image is cut in height on mobile view while displays correctly on desktop.
I tried to see if I can change this in css/krystal-style.css but the best I could do was to make it scrollable (with overflow: scroll;).
Would be great if you can share how it could be modified to not cut the image in mobile view.
ST
Spiracle Themes
Original poster
#2
Hi Steinar,
Try this CSS and let us know
@media only screen and (max-width: 480px) {
.blog-wrapper .image, .blog-wrapper.blog-list .image {
height: auto;
}
}
Copy and paste this in Appearance -> Customize -> Additonal CSS
Best Regards
Yes that did the trick! Thanks for your quick reply and great support!