What is the URL to your staging site?
GL
Here is your call out.
<div id="undefined-sticky-wrapper" class="sticky-wrapper" style="height: 50px;">
If you adjust this in your CSS and set !important you should be able to adjust your height. This is for the wrapper.
You can also adjust this: (DEFAULT)
.navbar.navbar-default {
background-color: #fff;
font-weight: 200;
margin-bottom: 0;
margin-top: -2px;
border-bottom: 1px solid #eee;
position: relative;
z-index: 999999;
width: 100%;
}
ADD
.navbar.navbar-default {
background-color: #fff;
font-weight: 200;
margin-bottom: 0;
margin-top: -2px;
border-bottom: 1px solid #eee;
position: relative;
z-index: 999999;
width: 100%;
height: 100px;
}
Set the height as you desire and it will adjust the wrapper dynamically.
I hope this helps.
GL