Shopify themes, liquid, logos, and UX
To continue receiving payouts, you need to secure your account by turning on two-step authentication. If two-step authentication is not turned on your payouts will be paused. Learn more
Hey!
Someone helped me code my sidebar menu to be sticky, however it also applied it to the mobile version. On the phone the dropdown menu shows behind the products, so I'de like to remove the sticky menu on the mobile version ONLY. Can anyone please help me alter or add to this code to remove the sticky menu from mobile?
#shopify-section-sidebar {
position: sticky;
top: 0;
}
animekyashi.com
password: cat
Thanks in advance!!
Solved! Go to the solution
This is an accepted solution.
paste this following code at the very end of your theme.css.liquid file or theme.css file
@media (max-width: 600px) {
#shopify-section-sidebar {
position: relative;
top: 0;
}
}
This is an accepted solution.
paste this following code at the very end of your theme.css.liquid file or theme.css file
@media (max-width: 600px) {
#shopify-section-sidebar {
position: relative;
top: 0;
}
}
My Pleasure.
User | RANK |
---|---|
116 | |
96 | |
73 | |
72 | |
46 |
Learn these 5 things I had to learn the hard way with starting and running my own business
By Kitana Jan 27, 2023Would you love to unleash the unbridled power of the Google Shopping Channel into your sho...
By Gabe Jan 6, 2023How can you turn a hobby into a career? That’s what Emmanuel did while working as a wa...
By Skye Dec 30, 2022