Minimize hight

Hello friends, how can I minimize the hight of this section?

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.content-container .multicolumn-card__image-wrapper {
    padding-top: 0 !important;
}
.multicolumn-card.content-container .multicolumn-card__info {
    padding-block: 0 !important;
}
.multicolumn-card.content-container .multicolumn-card__info > .rte {
    margin-top: 0 !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy

1 Like

Thank you very much that solved my problem