Two Sections Side By Side

Solved

Two Sections Side By Side

ProRugby2025
Tourist
6 0 2

hello everyone,

 

I am making a webshop for a customer and I am stumbeling against something.

 

I want to have two sections side by side. The first section is identified by "shopify-section-template--23693559038280__rich_text_mBk7Pr". The seconnd section is identified by "shopify-section-template--23693559038280__multicolumn_zziW9P". I want it to be like the picture I provided. The website is https://0xcinp-eb.myshopify.com/ with password chiesk. 

 

I hope any of you can help me out. 

 

Kind regards,

Jonathan

 

ps. this is how I want it to be

Screenshot 2025-04-30 at 15.59.35.png

Accepted Solution (1)

tim
Shopify Partner
4539 546 1658

This is an accepted solution.

You can do that by adding the following code to the Customize=> "Theme settings"=> "Custom  CSS":

main {
  display: grid;
  grid-template-columns: 1fr 2fr;   /* split 33% to 66% */
}
main>* {
  grid-column: 1/3;
}

@media (min-width:990px){
  section#shopify-section-template--23693559038280__rich_text_mBk7Pr {
    grid-column: 1/2;
  }
  section#shopify-section-template--23693559038280__multicolumn_zziW9P {
    grid-column: 2/3;
  }
}

 

Screenshot 2025-05-01 at 12.04.44 AM.png

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

View solution in original post

Replies 2 (2)

tim
Shopify Partner
4539 546 1658

This is an accepted solution.

You can do that by adding the following code to the Customize=> "Theme settings"=> "Custom  CSS":

main {
  display: grid;
  grid-template-columns: 1fr 2fr;   /* split 33% to 66% */
}
main>* {
  grid-column: 1/3;
}

@media (min-width:990px){
  section#shopify-section-template--23693559038280__rich_text_mBk7Pr {
    grid-column: 1/2;
  }
  section#shopify-section-template--23693559038280__multicolumn_zziW9P {
    grid-column: 2/3;
  }
}

 

Screenshot 2025-05-01 at 12.04.44 AM.png

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
ProRugby2025
Tourist
6 0 2

Thank you so much Tim, you have no idea how much this has helped me.