Multi column button not showing on mobile if swiping is enabled

Solved

Multi column button not showing on mobile if swiping is enabled

cweiri
New Member
7 0 0

Hi,

 

I have a multi column with 3 boxes in my shop. On desktop everything looks good, I can also see the black button beneath it. However, on mobile I cannot see the button if swiping is enabled. Any concrete hints how I can solve this? My URL is yaxare.com. Thank you!

 

 

 

Screenshot 2025-03-02 at 19.01.51.pngWhatsApp Image 2025-03-02 at 19.06.07.jpeg

 

I have the following settings:

 

Screenshot 2025-03-02 at 19.08.36.png

 

Accepted Solution (1)

CodingFifty
Shopify Partner
901 134 164

This is an accepted solution.

Hi @cweiri,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.center.small-hide.medium-hide {
    display: block !important;
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com

View solution in original post

Replies 2 (2)

CodingFifty
Shopify Partner
901 134 164

This is an accepted solution.

Hi @cweiri,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.center.small-hide.medium-hide {
    display: block !important;
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
cweiri
New Member
7 0 0

Thanks, that worked well!