When I preview my site in the iPad (safari) parts of the pages are cut off, not stretching fully across the page... the header and the body are cut off... can someone tell my this is happening... i'll send you my site's link through a pm :)
Thanks
When I preview my site in the iPad (safari) parts of the pages are cut off, not stretching fully across the page... the header and the body are cut off... can someone tell my this is happening... i'll send you my site's link through a pm :)
Thanks
Intermittent header/body clipping in iPad Safari commonly stems from viewport/scaling issues, fixed-width elements that overflow the device width, or stale cached files. Because reported the site looked fine and later said it was refined, a cache or recent CSS change is a likely suspect. The following checks isolate and fix the usual causes.
Ensure a responsive viewport is present:
<meta name="viewport" content="width=device-width, initial-scale=1"> (Avoid maximum-scale=1 unless accessibility implications are understood.)
Make media and containers fluid:
img, iframe, video { max-width: 100%; height: auto; }
.container { box-sizing: border-box; width: 100%; } Find the overflowing element: enable Web Inspector on the iPad (Settings > Safari > Advanced > Web Inspector) and connect to desktop Safari, or temporarily add a debug outline:
* { outline: 1px dashed rgba(255,0,0,0.15); } Quick temporary stopgap:
html, body { overflow-x: hidden; } This hides the symptom but does not fix the offending element; use it only to confirm overflow is the cause.
If behavior differs between testers, clear Safari cache and test in Private mode to rule out cached CSS/JS.
These steps cover the most reliable ways to reproduce and resolve cut-off layouts on iPad Safari without guessing at causes.
Jump to Post— JorgeM 958Your site look fine from my iPhone and iPad.
Your site look fine from my iPhone and iPad.
I know because i managed to refine it before you saw it :)
I'll still thank you for contributing :)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.