Shopify themes, liquid, logos, and UX
Good day,
Is there a quick way to resize or my blog photos to the same size? I have tried everything I can think of and they are all different sizes still.
Solved! Go to the solution
This is an accepted solution.
please place below code into your theme files,
Online Store > Edit Code > Assets > theme.css file and place at the very bottom OR
.blog-post-card__figure img {
object-fit: cover;
width: auto;
height: 300px;
}
Online Store > Edit Code > Layout > theme.liquid file before </head> tag
<style>
.blog-post-card__figure img {
object-fit: cover;
width: auto;
height: 300px;
}
</style>
Results:
can you please share the store url?
Thanks
This is an accepted solution.
please place below code into your theme files,
Online Store > Edit Code > Assets > theme.css file and place at the very bottom OR
.blog-post-card__figure img {
object-fit: cover;
width: auto;
height: 300px;
}
Online Store > Edit Code > Layout > theme.liquid file before </head> tag
<style>
.blog-post-card__figure img {
object-fit: cover;
width: auto;
height: 300px;
}
</style>
Results:
My main post was affected now too and its picture is too small now. How do I fix this?
you just removed it? please show it again i will provide the code for that too.
@Liquid_xPert_SJ , I have removed the main post. All good. Thanks for the help.
update your code with this
.blog-post-card__figure img {
object-fit: cover;
width: 100%;
height: 300px;
}
Hi ,
.blog-photo {
width: 300px; /* Set your desired width */
height: 200px; /* Set your desired height */
object-fit: cover; /* This property ensures the image covers the defined dimensions */
}
apply the blog-photo class to all your blog photos:
try this and let me know if you still need any help.
You can put that into assets/theme.css
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025