Hi there
I’m using the X Theme.
The mobile menu, when expanded,overlaps the content. But only until the content centers - then it’s pushed down where it’s supposed to be.
Is there a way to keep the content pushed down whenever the mobile menu is expanded?
The site is here:
www.sangundervisning-mettejuul.dk
My CSS is here:
.entry-wrap {background-color: rgba(255, 255, 255, 0.6) ;}
.x-navbar {
background-color: rgba(255,255,255,0.4);
}
@media (max-width: 660px) {
/hide the sliding background/
.backstretch {
display: none !important;
}
/show a single standard background-image for mobile/
body {
background-image: url(http://sangundervisning-mettejuul.dk/wp-content/uploads/35.jpg);
/background-position: 50% top !important;/
background-size: cover !important;
background-attachment: fixed;
background-repeat: no-repeat;
}
}
@media ( max-width: 530px ) {
.x-brand {
margin-top: 15px;
font-size: 16px;
font-weight: bold;
}
}
@media (max-width: 1200px) {
.x-nav-wrap.desktop {
display: none
}
.x-nav-wrap.mobile {
display: block;
}
.x-nav-wrap.mobile.x-collapsed {
display: none;
}
.masthead-inline .x-btn-navbar {
display: block;
float: right
}
.masthead-stacked .x-btn-navbar {
display: inline-block
}
.x-navbar-fixed-top-active .x-navbar-wrap {
height: auto
}
}
Best regards
Kasper

