1)
CSS (css/custom.css):
@media (max-width: 991px) {
#header.header-effect-shrink .header-container {
min-height: 75px !important;
}
}
2)
CSS (css/custom.css):
@media (max-width: 991px) {
#header .header-nav-main nav > ul li a {
font-size: 15px !important;
line-height: 20px !important;
padding: 10px 8px !important;
}
}
3)
parallax images not resizing for mobile
Parallax are set to cover (so the images are responsive and will crop. You need to change it to background-size 100% and change height, that’s the only way to do that.
—
My suggestion is to add a custom class, for example: “my-custom-parallax”
HTML:
<section class="my-custom-parallax parallax section section-parallax custom-parallax-bg-pos-left custom-sec-left h-100 m-0" data-plugin-parallax data-plugin-options="{'speed': 1.5, 'horizontalPosition': '100%'}" data-image-src="img/BZImages/1920x1100Doc.jpg" style="min-height: 315px;">
</section>
And then customize CSS (css/custom.css):
@media (max-width: 991px) {
.my-custom-parallax {
min-height: 31vw !important;
}
.my-custom-parallax .parallax-background {
background-size: 100% !important;
}
}
Best Regards