llo2ay
April 13, 2022, 9:44am
1
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/
@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.
Hi @llo2ay ,
You can try follow the instruction below:
Go to Online Store → Theme → Edit code.
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;
}
}
Layout → /theme.liquid → paste code below into the tag 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.
Hi @llo2ay ,
You can follow the instruction below:
Go to Online Store->Theme->Edit code
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.
llo2ay
April 13, 2022, 10:07am
6
Of course,
Here are two screenshots: one is desktop the other is mobile. I’m aiming to have it look like the desktop
llo2ay
April 13, 2022, 10:08am
7
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!
@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
GO to Theme Edit
multicolumn.liquid section and change heighlighted code as per screenshot
line number 16
llo2ay
April 13, 2022, 10:27am
10
Thank you so much! Hugely appreciate it.
And thanks everyone for all of the suggested solutions!
llo2ay
April 13, 2022, 10:31am
11
Thanks a lot for your help!!
Parla
June 16, 2025, 2:55pm
12
Hello, I did that. it resized the columns, but still shows one column per row.