I am trying to hide a notice on devices whose max screen size is 1024. For all greater sizes the notice will be displayed. I use the following css code but it does not work. What I am doing wrong?
@media screen and (max-device-width : 1024px)
{
.global-site-notice
{
display: none !important;
}
}