How can I resize a large blog image on the Context theme?

I’ve seen tips on how to deal with it here but for other themes, and the code changes people used didn’t work for me, can someone help? Thanks.

Hi @marciobernucci
Thank you for your question.
Please share your store URL, page URL and also password (if your store has one) so we can help you.

https://e2560d.myshopify.com/blogs/news/the-importance-of-health-checks for a test blog page

Hi @marciobernucci
You can try follow this path:
Themes => edit code => asset => theme.css
and add this code to bottom of the file theme.css
And change the number to the size you like

@media (min-width: 38em) {
.article__heading-wrapper {
  min-height: 20vw;
}
}
1 Like

That worked perfectly! I have a similar issue with the logo being too big on mobile drawer, do you have a similar fix?

Thanks

.drawer-menu__logo .responsive-image__wrapper:before{
padding-top: 100px!important;
}
.drawer-menu__logo .responsive-image__wrapper img {
object-fit: contain;
}

It worked, thanks a million!