Shopify themes, liquid, logos, and UX
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
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/
Solved! Go to the solution
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.
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.
Of course,
Here are two screenshots: one is desktop the other is mobile. I'm aiming to have it look like the desktop
Desktop
Mobile
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!
Thanks a lot for your help!!
GO to Theme Edit
multicolumn.liquid section and change heighlighted code as per screenshot
line number 16
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
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.
Thank you so much! Hugely appreciate it.
And thanks everyone for all of the suggested solutions!
Hello, I did that. it resized the columns, but still shows one column per row.