Solved

Adjust Multicolumn Padding in Sense Theme

katfinley
Tourist
9 0 3

Hi guys!

 

We are using the Sense theme.  On this page, I have a multicolumn layout with images in each column.

 

Is there a way to make the padding between the multicolumns zero, so that the images appear as large as possible?

 

I know the multicolumn layout is somewhat responsive (when I make my window smaller, they start to get closer together), so I don't want to break that.  But in the general laptop view (screenshot attached), would be great if I could find a way to maximize image size and remove the white space in between the columns.

 

Thank you in advance for your help!

-Katie

https://verygoodmfg.com/pages/canning

Accepted Solution (1)

Ahsan_ANC
Shopify Partner
1362 246 309

This is an accepted solution.

Hi, @katfinley 

You can try this code


1. Go to Online Store-> Theme->Edit code
2. Asset-> base.css ->paste the below code at the bottom of the file.

 

 

@media screen and (min-width: 750px){
.background-none .multicolumn-card__image-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
}}

 

Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search

View solution in original post

Replies 2 (2)

Ahsan_ANC
Shopify Partner
1362 246 309

This is an accepted solution.

Hi, @katfinley 

You can try this code


1. Go to Online Store-> Theme->Edit code
2. Asset-> base.css ->paste the below code at the bottom of the file.

 

 

@media screen and (min-width: 750px){
.background-none .multicolumn-card__image-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
}}

 

Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search
katfinley
Tourist
9 0 3

This worked perfectly - thank you @Ahsan_ANC!