Hi Mac,
Edit your CSS
.fusion-header-has-flyout-menu .fusion-flyout-menu-bg {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
/* height: 100%; */
/* min-height: 700px; */
opacity: 0;
transition: all .3s ease-in-out 0s;
}
and
.fusion-header-has-flyout-menu .fusion-flyout-menu, .fusion-header-has-flyout-menu .fusion-flyout-search {
z-index: 99998;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
/* height: 100%; */
opacity: 0;
transition: all .3s ease-in-out 0s;
}
and finaly
.fusion-header-has-flyout-menu .fusion-flyout-menu {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
overflow-y: auto;
padding: 0 25px 25px;
/* height: 100%; */
}
I hope this will help you!
Stay blessed!
-
This reply was modified 7 years, 2 months ago by Qaisar Feroz. Reason: typo