Jump to content

Resizing for tablets


sonicthehedgehog

Recommended Posts

That's one of the things you need to do to make the website responsive. I don't know how your site is coded, so I can't tell for sure if it's the only thing you need to do to fix the problem.

Link to comment
Share on other sites

Usually the device width and how the layout fits within that width determine the media query to use, so when device width falls below 768px (portrait tablet view) it reverts to mobile/handheld layout with mobile menu, above that depending on device width it would have appropriate sizing as it moves from tablet to wide screen desktop device media queries, for example

@media (min-width: 750px){ /* tablet styling*/}@media (min-width: 768px){ /* greater than tablet */}@media (min-width: 992px){ /* desktop 1024 */}@media (min-width: 1280px){ /* wide screen desktop  and greater*/}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...