Make blog post images square

Solved

Make blog post images square

LoversAudio
New Member
4 0 0

Could anyone help me with making blog posts have a square image that is not cropped?
I'm able to change settings to do this with products, but not blog posts.
I'm using the 'Dawn' theme, but I'd also like to know how to do this with the 'Publisher' theme.
My website is LoversAudio if that helps.

Accepted Solution (1)
Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

Hi @LoversAudio 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
.article-card-wrapper .card__inner.color-scheme-5.gradient.ratio {
   width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }
</style>

Tech_Coding_0-1733905506864.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Replies 5 (5)
LoversAudio
New Member
4 0 0

loversaudio.com

Tech_Coding
Shopify Partner
514 132 131

Hi @LoversAudio 
would you like to share your blog page URL.
so i can check and provide you possible solution for your question.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
LoversAudio
New Member
4 0 0

loversaudio.com

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

Hi @LoversAudio 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
.article-card-wrapper .card__inner.color-scheme-5.gradient.ratio {
   width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }
</style>

Tech_Coding_0-1733905506864.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
LoversAudio
New Member
4 0 0

Perfect! Thank you!