Removing side padding from multicolumn images and fit to page with no gaps.

Hi there,

Wanting to remove the side padding from my multicolumn section to fit the page and have no space between images or padding, and none on either right or left side:


it looks like this, but i want it to look like this:

Here is my website : https://www.middlefingerstore.com/

password is Valentine22!!!

1 Like

Hi @Sinageorgeakers

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:
.section-template--23345296179504__multicolumn_Yb3bdc-padding {
    max-width: 100%;
    padding: 0;
}

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

Hi @Sinageorgeakers

You can change the padding on your multicolumn by following this instruction:

  1. Go to Shopify > Theme > Customize

  2. Copy and paste this code on Theme settings > Custom CSS section

.multicolumn-list {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

Hope it helps.

Thank you

Welcome! Would you mind hitting ā€˜like’ as well? Thanks!