How to align two banners at the same level?

Hello, can anyone help me please with how to put the red bordered two banners at the same level?

Thank you!

Hi @Gabi6 ,

You mean enclose this buttons in a box, exactly shown in your image? I do not understand what you mean by “same level.” Can you also provide your website so we can provide a code specific for you? Thank you

The website is www.geolenn.com. I need it to look like in the attached photo. I’m sorry for my bad english.

Hi,

Please follow the instructions below.

NOTE: This will only occupy the space intended for this section. If you want the image bigger, you need to hire a developer to change the whole footer layout

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the base.min.css
  3. Paste the code below at the very bottom of the file.
.t4s-footer-content {
    display: grid;
    grid-auto-columns: 1fr 1fr;
}

.t4s-socials-block.t4s-setts-color-false.social-01510180-2788-43a9-9732-523c9dbf3445 {
    grid-area: 1/span 2;
}

It works. Thanks a lot!