Hello guys, I created a custom liquid on my collection pages and it works perfectly on desktop view. But in mobile view, some buttons are missing. Please see screenshots below. Any help will do. Thanks
My collection page url : https://www.brinnova.com/collections/copper
Desktop View
Mobile View - As you can see other buttons such as “Copper, Fiber & Power Cord” are not showing.
Hi @remz1234 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 
@remz1234
Please add the following CSS cod to your assets/ecom-base.css bottom of the file.
@media (max-width: 768px) {
.button-container {
flex-wrap: wrap !important;
}
}
Thanks!
Hi @remz1234
Check this one.
- From you Admin page, go to Online Store > Themes
- Select the theme you want to edit
- Under the Asset folder, open the main.css(base.css, style.css or theme.css)
- Then place the code below at the very bottom of the file.
@media (max-width: 768px) {
.button-container {
flex-wrap: wrap !important;
}
}
Hi @BSSCommerce-HDL if you notice on mobile view, the buttons are in horizontal scrolling and I want to figure out why other buttons such as "copper, fiber and power cord are not scrollable but the rest are scrollable.
Hi @vm-web if you notice on mobile view, the buttons are in horizontal scrolling and I want to figure out why other buttons such as "copper, fiber and power cord are not scrollable but the rest are scrollable.
Hi @Made4uo-Ribe if you notice on mobile view, the buttons are in horizontal scrolling and I want to figure out why other buttons such as "copper, fiber and power cord are not scrollable but the rest are scrollable.