When trying to use the overlay menu (menu-10.html) while using SASS versions of the template, the overlay background does not cover the entire page.
It only covers the height of the header.
See "header.scss" on line #1062
#header-wrap {
position: relative;
z-index: 199;
@include translate3d(0,0,0);
-webkit-perspective: 1000px;
-webkit-backface-visibility: hidden;
}
When commenting out the following 2 lines, my problem is solved and the overlay covers the screen entirely.
@include translate3d(0,0,0);
-webkit-perspective: 1000px;
Is it safe to remove these 2 lines?
