How can I reduce image size in the Dawn theme's multicolumn section?

Topic summary

A user wants to reduce the size of images in the Dawn theme’s multicolumn section from 89px to approximately 50px.

Solutions provided:

Multiple contributors offered CSS code snippets to add to the base.css file:

  • First approach: Add code targeting .multicolumn-card__image-wrapper with width: 50px
  • Alternative approach: Use width: 22% !important for responsive sizing
  • Final working solution: Set width: 30% with margin: auto to both resize and center the images

Implementation steps:

  1. Navigate to Online Store → Themes → Edit code
  2. Open the base.css file in the Assets folder
  3. Paste the CSS code at the bottom of the file
  4. Save changes

Outcome:

After initial attempts where images resized but weren’t centered, the solution using width: 30% and margin: auto successfully resolved both the sizing and alignment issues. The discussion concluded with the user confirming the fix worked.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hey everyone,

I would like to reduce the multicolumn’s images (icons) in the dawn theme. At the moment it’s 89px and I wanted to reduce it to around 50px. it’s possible? Can you help me with the code?i think the section is:

shopify-section-template–19540079182170__0154692f-a85c-4b20-a16f-3396d9c5cdd2

Thank you

Store link: https://4cdc2d-4.myshopify.com/

pass: lugode

1 Like

Hi @ADRIRTP

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.multicolumn-card__image-wrapper.multicolumn-card__image-wrapper--third-width.multicolumn-card-spacing {
    width: 50px;
}
1 Like

Hi @ADRIRTP

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.multicolumn-card__image-wrapper–third-width {

width: 22% !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Thanks for the clear explanation, but for me it is not working. Is this still the way to go? I use the Dawn theme and have only the base.css

I copied your code but my pictures are not changing from size.

Hi @Bianca16

This code may not work in your theme because it’s for the store of the post owner. Please share your store URL so I can take a look. Thanks!

Hi @Made4uo-Ribe ,

Thanks for the reply.

Shop name is:

https://budgetterenvoorjou.nl/

Thanks for the info, try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.multicolumn-card__image-wrapper {
    width: 30%;
   margin: auto;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

2 Likes

It is now smaller but not in the middle. How can I move it to the middle?

It worked! Thankyou so much :slightly_smiling_face: