Hi, i want t the social media icons to disappear when they get into smaller devices such as mobile or ipad
ideally when the menu changes into a burger menu
any help is appreciated !
https://marthajewelry.myshopify.com/
password - test
A user wants to hide social media icons on smaller devices (mobile/iPad), specifically when the navigation menu switches to a hamburger menu.
Proposed Solution:
base.css file in the Assets folder@media only screen and (max-width: 990px) {
ul.footer__list-social.list-social.unstyled-list.list-social {
display: none;
}
}
Current Status:
The discussion remains unresolved. The original poster reported that the suggested CSS solution did not work as expected. No alternative solutions or troubleshooting steps have been provided yet.
Hi, i want t the social media icons to disappear when they get into smaller devices such as mobile or ipad
ideally when the menu changes into a burger menu
any help is appreciated !
https://marthajewelry.myshopify.com/
password - test
Hi @hasanali1 ,
I understand that you want to hide the social icons for smaller screens. Please follow the instructions below to do so.
@media only screen and (max-width: 990px) {
ul.footer__list-social.list-unstyled.list-social {
display: none;
}
}
hi, this does not seem to work ;(
solved