A user running the Debut theme needed to reduce oversized featured images on their blog page, which were taking up half the screen on desktop. They wanted eventual grid layout support for multiple posts.
Solution for Debut Theme:
Add custom CSS to theme.css file targeting the blog template container
Set max-width: 600px (adjustable) with centered positioning
This fix was confirmed working by the original poster
Dawn Theme 2.0 Complications:
Multiple users reported the same issue with Dawn theme but couldn’t find theme.css
A workaround emerged: modify section-blog-post.css by reducing the max-width value in .article-template__hero-container from 130rem to a smaller number (e.g., 66rem)
This solution only affects individual blog post pages, not the main blog listing page
Key Limitation:
Each Shopify theme has different file structures and CSS selectors, requiring theme-specific solutions. The helper noted that custom code would be needed for each unique website/theme combination.
Status: Resolved for Debut theme; partial workaround available for Dawn 2.0. Questions remain about Studio theme and main blog listing pages.
Summarized with AI on October 30.
AI used: claude-sonnet-4-5-20250929.
I’ve just posted my first blog post and on the blog page the featured image is huge, taking up half the page on desktop. I’m using the Debut theme and I’d like to know how can I reduce the display of this image? I’ve looked into the liquid for this page and I believe I know where the code is but don’t know exactly where to edit and what to edit with. Eventually once I have more than one post in my blog, I’d like them to display in a grid format (2 or 3 columns), so I’d like the featured images to display at half the current size.
Each theme works differently and has different HTML selectors.
Even using this very CSS code on Dawn could not yield the same results. I’d need to see the website’s URL to be able to code an unique solution for it.
Hi Diego, this is my website https://meowwhisker.myshopify.com/, I just want to adjust the featured image on the desktop because it looks so blurry compared to mobile, thanks!
Hi @diego_ezfy any chance you can help me fix this on the minimal theme? I’ve tried following your instructions but doesn’t seem to work for minimal and I cannot find anywhere in the code where I can change it (not experience at coding at all!).
Has anyone been able to figure this out for the Dawn theme (or any of the 2.0 themes)? I see a few other people asking but haven’t seen an answer.
All my blog posts have a full span image that looks ridiculous - seems like Shopify designers didn’t bother to actually test the output for this theme or something.
For anyone still looking for an answer to this, I came up with a quick and dirty fix for the Dawn theme that will work until I can figure out something better.
In section-blog-post.css locate this section (it starts at row 11 of the standard file):
This was a great answer. The solution is working on the individual blog pages. Was finally able to fix this oversized image issue. However one another thing is troubling me, is how to change the image size of the featured image displayed on the main blog page i.e. which has the list of blog articles, from where we go the individual articles. Any suggestions.
Could you maybe help me out? i tried to use this: @media (min-width: 767px) { #shopify-section-blog-template .blog-list-view .page-width { max-width: 200px !important; /* Ensure maximum width is applied / width: 100% !important; / Set width to 100% / display: block !important; / Ensure it’s displayed as a block element / margin: 0 auto !important; / Center the content horizontally */ } }