Thanks, Qaru for the help. I have custom CSS that I use to tighten the design. I continue to encounter this problem if, if I changed something in one media request, say for iphone 6, this change will then affect another device, say, iphone 5. This became a problem when I constantly adjust without end . Here are my @media intercept points that I use.
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) { } @media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) { } @media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) { } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) { }
Any help would be very helpful.
html css iphone responsive-design wordpress
robwri32
source share