@kharisblank Different question but I figured your solution could have helped me as well, unfortunately it didn’t could you please help me too?
Seems that my hamburger button is not tappable (can’t access dropdown), as soon as I use it on any other page than Homepage (typically enough coming back to homepage, the button does not work anymore there either). Any thoughts on this?
Site is under htaccess at the moment so I won;t be able to share the url just yet, soon though 
Custom CSS in place:
.text-slider .maintitle {
font-size: 80px;
font-family:arial, sans-serif;
}
.text-slider .subtitle {
font-size: 40px;
}
@media only screen and (max-width: 767px) {
.text-slider .maintitle {
font-size: 50px;
}
.text-slider .subtitle {
font-size: 26px;
}
}
@media only screen and (max-width: 479px) {
.text-slider .maintitle {
font-size: 26px;
}
.text-slider .subtitle {
font-size: 15px;
}
}
.site-header.fixed.float-header {
background-color: rgba(255, 255, 255, 1.0);
}
.btn-menu {
color: #333333;
}
.site-header .col-md-8{
position: relative;
z-index: 999;
}
Additionally, changing the z-index on .site-header .col-md-8
create a background colour behind my menu items, how can I prevent this? Now I am not a front-end dev so excuses me if I am not making sense.
Many thanks!