Forums

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

Home Forums Other best way to get some sorta responsive design on my site? Re: best way to get some sorta responsive design on my site?

#83304
stevendeeds
Member

well, you are wanting to target screen sizes less than a certain resolution… so…

@media screen and (min-width: 400px) and (max-width: 800px) { //STYLE YOUR ELEMENTS THE WAY YOU WANT THEM DISPLAYED IN HERE }

Check this out: http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-a-crash-course-in-css-media-queries/