I'm currently working on a webpage that uses the Bootstrap layout.
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
//All menu items taking up the full width at the top.
</div>
//Jumbotron displaying the main content of views.
<div class="jumbotron">
@RenderBody()
</div>
</body>
Here is the CSS for the jumbotron:
.jumbotron {
height: 100%;
padding-top: 80px;
padding: 40px;
margin-bottom: 0px;
font-size: 15px;
font-weight: 100;
line-height: 2.1428571435;
color: inherit;
}
I have a view with a Telerik grid, but when it's displayed on the screen it ends up behind the Menu. I believe this is because the jumbotron is set to take up 100% of the height. How can I adjust the layout so that the jumbotron appears below the Menu, giving them some separation?