Hi there, I’m have a multicolumn section on my desktop which is perfect size but when I change to mobile view they are way too big. I’d like to change the single column to 3 column across on mobile view?
1 Like
Hey @Sharyn2
Kindly share your Store URL and Password if enabled
Hi @Sharyn2 ,
Would you mind to share your URL website with password if its protected? Thanks!
https://www.tripleonedesigns.com.au/
Testing1234
1 Like
Hi @Sharyn2 ,
Thank you for the information.
Try this.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
@media only screen and (max-width: 749px){
li.multicolumn-list__item.grid__item.center {
padding: 20px;
margin-left: 5px;
}
.grid--1-col .grid__item {
max-width: 32%;
}
}
Result:
I hope it help.