To maintain a fixed video size of 600x600 pixels on mobile view in Webflow, you'll need to override the default responsive behavior for embeds.
fixed-video
).fixed-video
Div.width="100%"
and height="100%"
or aspect ratio CSS—instead:width="600"
and height="600"
in the embed code directly.style="max-width: 100%;"
.fixed-video
class in mobile view (under the mobile breakpoint).vw
, or other responsive units for the embed iframe.width="100%"
, style="max-width:100%"
, or CSS rules that can cause scaling—replace those with width="600"
and height="600"
.loading="lazy"
to help load performance, if desired.To fix a video at 600x600 on mobile in Webflow, wrap it in a Div Block with explicit pixel dimensions, use a custom Embed with fixed width/height set directly in the <iframe>
, and make sure no responsive styling overrides are applied in smaller breakpoints.