We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to edit the grid design of a MultiColumn for mobile?

Solved

How to edit the grid design of a MultiColumn for mobile?

llo2ay
Tourist
7 0 4

Hi, I am currently working on a shopify website - specifically the "Dawn" theme. 

And I know it is possible to edit the design of particularly the mobile aspect: 

What I want to do is replicate the desktop design to the mobile design (currently, in mobile it shows 1 column per row, while I would like it to be 2 columns per row, just like desktop)

Here is my published website link: https://albertodinero.com/

Accepted Solution (1)

AvadaCommerce
Shopify Partner
3879 840 1007

This is an accepted solution.

Hi @llo2ay ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/section-multicolumn.css->paste below code at the bottom of the file:

.multicolumn-list__item {
   max-width: 50% !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned

View solution in original post

Replies 11 (11)

Zworthkey
Shopify Partner
5581 641 1583

@llo2ay 

Kindly share a screenshot of which you are looking.

Thank you.

@media screen and (max-width: 767px){
.multicolumn:not(.background-none) .multicolumn-card {
    width: 95% !important;
}
.grid--1-col .grid__item {
    max-width: 50% !important;
    width: 50% !important;
}
}

Add this code in the bottom of the section-multicolumn.css file.

llo2ay
Tourist
7 0 4

Of course, 

Here are two screenshots: one is desktop the other is mobile. I'm aiming to have it look like the desktop

 

DesktopDesktopMobileMobile

llo2ay
Tourist
7 0 4

Actually, also while I'm at it - I would like to make the font bolder and/or bigger where it says "Men" / "Women"...
Would hugely appreciate that!

Zworthkey
Shopify Partner
5581 641 1583

@llo2ay 

.multicolumn-card__info h3 {
    font-size: 24px !Important;
    font-weight: 800 !important;
}

@llo2ay 
Add this code in the bottom of the section-multicolumn.css file

llo2ay
Tourist
7 0 4

Thanks a lot for your help!! 

vikaspateldesig
Shopify Partner
2 0 0

Screenshot from 2022-04-13 15-47-13.png

 

GO to Theme Edit
multicolumn.liquid section and change heighlighted code as per screenshot
line number 16

Halothemes
Trailblazer
168 30 47

Hi @llo2ay , 

 

You can try follow the instruction below:
1. Go to Online Store -> Theme -> Edit code.
2. Asset -> create separate css file for css code then paste code below in the file.
Ex: /custom.css

 

 

@media screen and (max-width: 767px){
.multicolumn:not(.background-none) .multicolumn-card {
    width: 95% !important;
}
.grid--1-col .grid__item {
    max-width: 50% !important;
    width: 50% !important;
}
}

 

3. Layout -> /theme.liquid -> paste code below into the tag <head></head> of the file:

 

 

{{ 'custom.css' | asset_url | stylesheet_tag }}

 

 

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

HaloThemes - Top Premium Shopify Theme Provider
Ella Shopify Theme OS 2.0 - #1 Best Selling Shopify Theme of All Time
Want to try Shopify? Open a Store for FREE

AvadaCommerce
Shopify Partner
3879 840 1007

This is an accepted solution.

Hi @llo2ay ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/section-multicolumn.css->paste below code at the bottom of the file:

.multicolumn-list__item {
   max-width: 50% !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned
llo2ay
Tourist
7 0 4

Thank you so much! Hugely appreciate it. 
And thanks everyone for all of the suggested solutions! 

Parla
Visitor
2 0 1

Hello, I did that. it resized the columns, but still shows one column per row. 

vikaspateldesig
Shopify Partner
2 0 0
  • Change Class NameChange Class Name

    You Just need to rename your class from "grid--1-col" to "grid--2-col"