how can I change the High of this Multicolumn?

Hello guys, how can I change the hight of this multicolumn?

Hello @NikosBat !

Do you want to add margin on top and bottom? Example:

Thanks for answering Cristina_92, where did you find this code?

@NikosBat , you just need to paste this code into Theme Editor (Custom CSS section):

.slider-mobile-gutter {
  margin-bottom: 50px; // change px to your need
  margin-top: 50px;
}

I did it with the Dawn theme.

Cristina_92, I tried but its not working on my website :confused:

Sorry, but it’s hard to understand why it doesn’t work. Perhaps someone in the community can help you :slightly_smiling_face: .

no problem, thank your for your help.

Hi @NikosBat

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:
@media screen and (min-width: 750px) {
    .section-template--22708756021580__multicolumn_GV4q7E-padding {
        padding: 6rem 5rem;
    }
}
@media screen and (max-width: 749px) {
    .section-template--22708756021580__multicolumn_GV4q7E-padding {
        padding: 5rem 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 @NikosBat

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.multicolumn {
    height: 500px !important;
    display: flex;
    align-items: center;
}

Here is the result: https://prnt.sc/z1adbdgmv6Uo

I hope this helps

Best,

Daisy

Hi DaisyVo this helped me with the outside box thank you very much, now how can I change the inside box too and make the hight smaller?

Hey Made4uo-Ribe this helped me too thanks a lot