Mobile navbar color

Hello,

I adjusted the background color of my nav bar following this article below.

https://www.support.waituk.com/hc/en-us/articles/115001344769-Change-the-Navbar-Background-Color

I set a rgba color (0, 0, 0, 0.3) and it works fine on computer (screenshot 1) but looks grey on mobile (iPhone). See screenshot 2.

Is there something to correct this issue ?

Kind regards,

Ben


To add more, I have same problem on tour pages…

Thanks a lot for your help !

Hello,

You can add the following CSS to add a solid color background of your choice for mobile view. Transparent option is only for desktop views.

@media only screen and (max-width: 991px) {
#header .container-fluid {
background: #c02127;
}
}

Thank you