Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Firefox ignoring max-width:320px media query Re: Firefox ignoring max-width:320px media query

#93609
Rutger
Member

Can you try changing


@media screen and (max-width:320px)
{
#home-blog{display:none}
}

into


@media screen and (max-width:320px;)
{
#home-blog{display:none;}
}