How can I make every section on a Webflow site full screen and adjust the content inside to be adjustable as well?

Published on
September 22, 2023

To make every section on a Webflow site full screen and adjust the content inside to be adjustable as well, you can follow these steps:

  1. Set the section to full screen height:

    • Select the section you want to make full screen.
    • In the Style panel, go to the Sizing section.
    • Set the height of the section to 100vh (viewport height). This will make the section occupy the entire screen height.
  2. Adjust the content inside the section to be adjustable:

    • Select the element(s) inside the section that you want to adjust.
    • In the Style panel, go to the Positioning section.
    • Set the position to relative or absolute. This will allow you to adjust the position of the element(s) within the section.
    • Use margins, padding, and/or flexbox to adjust the positioning and layout of the content within the section. For example, you can use a combination of margin: auto and flexbox properties to center align the content vertically and horizontally.

Using these steps, every section on your Webflow site will be full screen, and the content inside will be adjustable as well. This approach ensures that your website looks visually appealing on different screen sizes and devices.

Note: Keep in mind that making every section full screen may not always be the best design choice, as it can potentially result in excessive scrolling for users. It's important to consider the overall user experience and the content of your site when implementing this technique.

Additional Questions:

  1. How do I make a section full screen in Webflow?
  2. What is the difference between relative and absolute positioning in Webflow?
  3. How can I center align content vertically and horizontally in a section using Webflow?