Forums

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

Home Forums CSS CSS media queries not working as I planned Reply To: CSS media queries not working as I planned

#166270
Paulie_D
Member

Take this

@media only screen and (max-width: 1024px)

and make it

@media only screen and (min-width: 481px) 

or

@media only screen and (min-width: 481px) and (max-width: 1024px)