What's your biggest current challenge? Have your say in Community Polls along the right column.

How to change Multicolumn to 2 rows on mobile?

Solved

How to change Multicolumn to 2 rows on mobile?

collins276
Trailblazer
213 1 32

Hello,

Can I change Multicolumn section to 2 rows (as the red blocks) instead  of 3 rows on Mobile.

My url: https://189ee3-2.myshopify.com/ 

Thank you, 

 

Screenshot2.png

 

Accepted Solutions (2)

Dan-From-Ryviu
Shopify Partner
10344 2054 2137

This is an accepted solution.

Hi @collins276 

You can do that by adding this code to the theme.liquid file after <head> in Online Store > Theme > Edit code 

<style>
@media (max-width: 767px) {
#Slide-template--16325952995510__multicolumn_GQTarg-2,
#Slide-template--16325952995510__multicolumn_GQTarg-3 {
max-width: calc(50% - 2px) !important;
}
}
</style>

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffee
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Dan-From-Ryviu
Shopify Partner
10344 2054 2137

This is an accepted solution.

Code updated

<style>
@media (max-width: 767px) {
.multicolumn-list li:nth-child(2),
.multicolumn-list li:nth-child(3) {
max-width: calc(50% - 2px) !important;
}
}
</style>

- Helpful? Like and Accept solution! Or Support me: Buy Coffee
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 3 (3)

Dan-From-Ryviu
Shopify Partner
10344 2054 2137

This is an accepted solution.

Hi @collins276 

You can do that by adding this code to the theme.liquid file after <head> in Online Store > Theme > Edit code 

<style>
@media (max-width: 767px) {
#Slide-template--16325952995510__multicolumn_GQTarg-2,
#Slide-template--16325952995510__multicolumn_GQTarg-3 {
max-width: calc(50% - 2px) !important;
}
}
</style>

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffee
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

collins276
Trailblazer
213 1 32

Thank you😀 

Is it possible to use Classname? Because if I remove and add columns again, Shopify will generate a new id.

Dan-From-Ryviu
Shopify Partner
10344 2054 2137

This is an accepted solution.

Code updated

<style>
@media (max-width: 767px) {
.multicolumn-list li:nth-child(2),
.multicolumn-list li:nth-child(3) {
max-width: calc(50% - 2px) !important;
}
}
</style>

- Helpful? Like and Accept solution! Or Support me: Buy Coffee
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.