How to get 3 Multicolumns on one row for Mobile without sliding?

Solved

How to get 3 Multicolumns on one row for Mobile without sliding?

Fishmoments
Tourist
6 0 1

Hi - is anyone able to help me, please?

 

I'm having trouble building the Dawn theme.

 

How to get 3 Multicolumns on one row for Mobile without sliding?

 

The page URL is

https://fishmoments.com.au/pages/fresh-seafood

 

Dingtalk_20240525174644(1).png

Thanks in advance!!!

Accepted Solutions (2)
Dawood_Mirza_
Trailblazer
127 18 28

This is an accepted solution.

No issues @Fishmoments , I got another way to get this
From Customizer > select your Multicolumn section > Custom CSS

Dawood_Mirza__0-1716827457316.png

 

Add this code

@media screen and (max-width: 749px) {
  .grid__item {
    width: 25%;
    min-width: unset;
  }
}


If you have multiples such sections add this to all those

Hope it works
BR 

Dawood Mirza

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.

View solution in original post

Dawood_Mirza_
Trailblazer
127 18 28

This is an accepted solution.

Ok, 
Try these settings it they work, or else I will give you code

Dawood_Mirza__0-1716869196092.png

 

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.

View solution in original post

Replies 6 (6)

Dawood_Mirza_
Trailblazer
127 18 28

Hi @Fishmoments,

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 "component-slider.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:

 

@media screen and (max-width: 749px){
.grid--peek .grid__item {
width: 33%;
min-width: unset;
}
}
adjust width % is creates design error

And Save.

 

Please don't forget to Like and Mark Solution to the post that helped you.

BR

Dawood Mirza

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.
Fishmoments
Tourist
6 0 1

Hello, Dawood!

First of all, thank you very much for your quick reply to my question.

I've followed your steps, but it seems doesn't work.

The page works the same as before. Nothing has changed, even though I have re-dragged the Multicolumn section.

Am I missing something, or is there an error in the operation?

Very much looking forward to you replying again.

Fishmoments_0-1716793187468.png

 

Dawood_Mirza_
Trailblazer
127 18 28

This is an accepted solution.

No issues @Fishmoments , I got another way to get this
From Customizer > select your Multicolumn section > Custom CSS

Dawood_Mirza__0-1716827457316.png

 

Add this code

@media screen and (max-width: 749px) {
  .grid__item {
    width: 25%;
    min-width: unset;
  }
}


If you have multiples such sections add this to all those

Hope it works
BR 

Dawood Mirza

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.
Fishmoments
Tourist
6 0 1

Thank you @Dawood_Mirza_ 

Now they're exactly on one row for Mobile without sliding.

Yet they were so small that it was difficult to see them clearly.

Their spacing is very different from the spacing in your screenshot.

Is there anything else I can do to optimize it?

Thanks again for your reply.

 

Fishmoments_0-1716863267191.png

 

Dawood_Mirza_
Trailblazer
127 18 28

This is an accepted solution.

Ok, 
Try these settings it they work, or else I will give you code

Dawood_Mirza__0-1716869196092.png

 

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.
Fishmoments
Tourist
6 0 1

Aha. That's great!
That's what I wanted.

Thank you very much for your guide.