Webflow sync, pageviews & more.
NEW

How can I display the full height of a Figma case study embedded in Webflow without it being cut off halfway through the page?

TL;DR
  • Set the embed container height to 100vh or auto and ensure the parent container isn't restricted.
  • Modify the Figma embed URL with &embed_host=webflow and manually adjust the iframe height if needed.
  • Use a parent div with 100vh height and apply flex or grid with align: stretch.
  • Ensure no parent container has overflow: hidden and set overflow to visible in the Style panel.
  • Preview or publish the page, as Webflow’s Designer may not show the correct rendering.

If your Figma case study embed is getting cut off in Webflow, you need to adjust its height settings to ensure it fully displays. Follow these steps to fix the issue.

1. Adjust Embed Container Height

  • Select the embed element in Webflow.
  • In the Style panel, set the Height to 100vh or auto.
  • If using a div block, make sure its parent container doesn’t have a restricted height.

2. Modify the Figma Embed Code

  • Ensure the Figma embed URL uses &embed_host=webflow at the end.
  • If the iframe embed code is being used, manually set the height:
  • Example: <iframe src="FIGMA_URL" width="100%" height="100vh"></iframe>

3. Use Flexbox or Grid for Full Height

  • Wrap the embed element inside a parent div with a height of 100vh.
  • Set the parent div's display to flex or grid and use align: stretch.

4. Check Overflow Settings

  • Ensure that no parent container has overflow: hidden, which can clip the embed.
  • Set the Overflow property (Style panel) of the parent div to visible.

5. Test in Preview Mode

  • Webflow’s Designer might not fully render the embed. Preview the page or publish it to verify.

Summary

Ensure the embed height is set correctly in Webflow, modify the iframe properties, use a proper parent container, check overflow settings, and always preview your changes. These steps should allow the Figma case study to display at full height.

Rate this answer

Other Webflow Questions