Stacking sections next to each other

Solved

Stacking sections next to each other

kirsten11123
Shopify Partner
68 0 20

Hello,

 

Is there a way I can stack these before and after elements to be in rows of 3 somehow?

They are all different sections, but the way they currently list out is not a great UX to scroll down through.

 

screencapture-skinfairy-au-pages-real-results-2025-06-11-12_28_55.png

 

https://9eoy9nmopb74de5x-39466729638.shopifypreview.com - real results page 

Accepted Solution (1)

websensepro
Shopify Partner
2121 265 315

This is an accepted solution.

Hi @kirsten11123,


1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.section-compare{
    display: inline-flex !important;
    width: 33.3% !important;
}
</style>

websensepro_0-1749626340143.png

 


Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 2 (2)

websensepro
Shopify Partner
2121 265 315

This is an accepted solution.

Hi @kirsten11123,


1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.section-compare{
    display: inline-flex !important;
    width: 33.3% !important;
}
</style>

websensepro_0-1749626340143.png

 


Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
kirsten11123
Shopify Partner
68 0 20

Legend, thank you so much!