I’m trying to hide the inline menu I created for social media on screens smaller than 375px wide. I tried using the following css, but the menu simply flashes as if it’s trying to hide, but can’t.
Credentials to follow
@media screen and (min-width: 0px) and (max-width: 374px){
.e1800-7 .x-menu .x-menu-inline {
display: none !important;
}
}