How to adjust the padding on top and bottom of this section

Hello guys, how can I adjust the padding of this section, I want this to be even on top and bottom

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.
@media screen and (max-width: 768px){
.multicolumn-card__info {
    padding-top: 0 !important;
}
.multicolumn-card__info .rte p {
    line-height: 20px !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy

Hello DaisyVo, is there a code where i can adjust the bottom of it too? Thats only for the top of the section.

HI @NikosBat

Please add this code

@media screen and (max-width: 768px){
.multicolumn > .page-width {
    padding-bottom: 0 !important;
}
}

Result:

I hope this helps

Best,

Daisy