Hi, I am trying to reduce the size of my mobile site by removing some obscure pages from the menu using @media
I am trying to use...
@media screen and (max-width: 400px) {
#menu311 {display:none;}
#menu325 {display:none;}
#menu315 {display:none;}
#menu349 {display:none;}
#menu336 {display:none;}
#menu337 {display:none;}
#menu782 {display:none;}
}
But, this is not working. Anyone know the right way?
TIA