Hello - just wondering what the different CSS breakpoints used in this theme are? I've been using a few different px limits to differentiate between iPhone portrait vs. landscape vs. iPad portrait etc. but wondered if there was an industry standard (or a theme standard)?
For example - I've used this for iPhone portrait + landcape mode:
@media only screen and (max-width: 750px) and (min-width: 1px) {
The easiest way to find out is to open up Chrome Dev tools click on the console . Press Ctrl +shift +f to bring the whole site finder and search for @media like i have done in this screenshot: http://prntscr.com/581m7u .
Hello - just wondering what the different CSS breakpoints used in this theme are? I've been using a few different px limits to differentiate between iPhone portrait vs. landscape vs. iPad portrait etc. but wondered if there was an industry standard (or a theme standard)?
For example - I've used this for iPhone portrait + landcape mode:
@media only screen and (max-width: 750px) and (min-width: 1px) {
Hey Dale!
The easiest way to find out is to open up Chrome Dev tools click on the console . Press Ctrl +shift +f to bring the whole site finder and search for @media like i have done in this screenshot: http://prntscr.com/581m7u .
Cheers
ThemeNectar Support Team
Got it figured out - thank you!