Section Padding

Topic summary

A user seeks to match the left and right padding of blocks in a Multicolumn 1 section to those in a Multicolumn 2 section, specifically for mobile view.

Initial Solution Provided:

  • Another user shares CSS code targeting specific slide IDs with padding-left: 2.5rem !important within a @media screen and (max-width: 749px) query.
  • Instructions include navigating to Shopify admin → Online Store → Themes → Edit code → base.css/style.css/theme.css.

Clarification & Refinement:

  • The original poster clarifies they want to adjust the entire block padding, not individual cards.
  • A revised solution targets .multicolumn-list with margin-left: 1.5rem !important for mobile view.
  • The margin size is copied from the existing 2nd multicolumn section.

Current Status:

  • The solution appears accurate (“Yes spot on”), but the user requests a screenshot showing where to inspect the default page padding, as they cannot locate it themselves.
Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

Hi everyone,

How can I set the left and right padding of 2 blocks in Multicolumn 1 section exactly as the padding of the Multicolumn 2 section (as in the image) in Mobile view. Where can I find the padding of the Multicolumn 2 section btw?

My url: https://189ee3-2.myshopify.com/

Thank you!!!

1 Like

Hi @collins276

Do you mean like this?

If it is check 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:

@media only screen and (max-width: 749px){
#Slide-template--16762544783542__multicolumn_AfzMTV-1 > div > div.multicolumn-card__info, #Slide-template--16762544783542__multicolumn_AfzMTV-2 > div > div.multicolumn-card__info {
    padding-left: 2.5rem !important;
}
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

The whole block. I can do it but can’t not find the padding of the Multicolumn 2 section. Can you take a screenshot?

1 Like

oh, okay. lIke this?

Check this one, same instruction.

@media screen and (max-width: 749px){
.multicolumn-list {
    margin-left: 1.5rem !important;
}
}

And Save.

Note: the size of the margin I just copy on the 2nd multicolumn.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Yes spot on. Can you take a screenshot where I can inspect its padding though? I can’t find it, I meant the default page padding.