Cell phone view
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/respon ... esign.html
Please read this first before posting any questions! Also check out the example project to get an idea how the RWD concept works.
Responsive Web Design FAQ:
http://wysiwygwebbuilder.com/forum/view ... 10&t=63817
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/respon ... esign.html
Please read this first before posting any questions! Also check out the example project to get an idea how the RWD concept works.
Responsive Web Design FAQ:
http://wysiwygwebbuilder.com/forum/view ... 10&t=63817
-
-
- Posts: 28
- Joined: Thu Sep 05, 2013 4:58 pm
- Location: McKinney, TX
- Contact:
Cell phone view
When viewing this website https://hxpassociates.com/ on an Android type phone, it displays the website correctly switching to the smaller version, but when viewed on some other types of phones, the large screen version is displayed. Why won't it display the smaller versions on all phones? There is one break point at 360px. Any suggestions? Thanks.
Re: Cell phone view
It's because your breakpoint is using max-width:360px.
This means any device that is 360px or smaller will see your mobile layout. Any device that has a viewport greater than 360px will see your desktop layout. In my opinion, using only 1 breakpoint is not enough as there are many size phones. Also, dont forget there are tablets that are bigger then phones but smaller then desktops.
You can visit this site and see what viewport sizes are for many phones: https://viewportsizes.com/
This means any device that is 360px or smaller will see your mobile layout. Any device that has a viewport greater than 360px will see your desktop layout. In my opinion, using only 1 breakpoint is not enough as there are many size phones. Also, dont forget there are tablets that are bigger then phones but smaller then desktops.
You can visit this site and see what viewport sizes are for many phones: https://viewportsizes.com/
Re: Cell phone view
If you want an example of a 5 breakpoint project, have a look here https://www.wysiwygwebbuilder.com/forum ... 41&t=88171
Alan
Alan
-
-
- Posts: 28
- Joined: Thu Sep 05, 2013 4:58 pm
- Location: McKinney, TX
- Contact:
Re: Cell phone view
Thanks for the info. I kinda figured that.