Fluid Layout
Fluid layout is a full-width layout, spanning the entire width of the viewport. You can easily display the contents taking the full width of the screen using Falcon's Fluid Layout.
See the implementation hereSwitching to fluid Layout
Replace class .container
to .container-fluid
inside the main
tag, and the page will be switched to fluid layout.
<main class="main" id="top">
<div class="container-fluid">
<!-- Your content will go here-->
</div>
</main>