Webflow sync, pageviews & more.
NEW

Is there an iPad landscape view option in Webflow? I've seen in a forum that the default desktop view looks the same as the iPad landscape view, but this doesn't appear to be the case. The iPad landscape view looks completely different and there doesn't seem to be a way to fix it.

TL;DR
  • Webflow does not have a specific iPad landscape breakpoint (1024px) but it usually falls under desktop styles (≥992px).
  • Use larger breakpoints (1280px, 1440px) in Webflow to check layout shifts.
  • Test with Webflow Preview and Chrome DevTools (Inspect > Device Toolbar > iPad > Rotate).
  • If needed, add custom CSS in Project Settings to target 1024px widths:
    ```css
    @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    /_ Adjust styles here _/
    }
    ```

Webflow does not provide a dedicated iPad Landscape breakpoint, but it does allow you to customize breakpoints manually. The default desktop breakpoint (≥ 992px) often applies to iPad landscape, but issues can arise depending on styles and layout settings.

1. Check Webflow’s Default Breakpoints

  • Webflow's breakpoints:
  • Desktop: ≥992px
  • Tablet: ≥768px and <992px (covers iPad portrait)
  • iPad landscape (1024px width) typically falls under desktop styles, but some differences may be due to browser rendering or specific CSS settings.

2. Use Webflow’s Larger Breakpoints

  • Click on “Breakpoints” (top bar in Webflow Designer).
  • Adjust styles for the 1280px or 1440px breakpoints to catch potential layout shifts.
  • Styles applied here will affect iPad landscape if they trickle down.

3. Use Webflow’s Preview & Chrome DevTools

  • In Webflow Designer: Click the eye icon (Preview Mode) but note it does not have a built-in iPad landscape option.
  • Using Google Chrome:
  • Right-click on your page > Inspect (or press Cmd + Shift + I on Mac / Ctrl + Shift + I on Windows).
  • Click Device Toolbar (small phone/tablet icon, top left of DevTools).
  • Select iPad Pro or iPad (gen 7/8/9) and rotate to landscape.

4. Override Styles with Custom Code (If Needed)

  • If design shifts occur only in iPad landscape (1024px width), use CSS overrides:
  1. Go to Project Settings > Custom Code > Inside <style> tags in the Head section.
  2. Add custom styles targeting iPad landscape using:
    ```css
    @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    /_ Adjust styles here _/
    }
    ```

Summary

Webflow does not provide a separate iPad landscape breakpoint, but it typically falls under desktop styles. Use breakpoints (1280px, 1440px) or Chrome DevTools to test, and apply CSS overrides if necessary.

Rate this answer

Other Webflow Questions