Our mobile drop-down menu version needs a transparent dark blue background, instead of a light gray background, with contrasting light color text.
Example snippet, not sure if this is the correct reference but this is partially what we have in our customized css field:
.x-navbar-wrap .x-navbar:not(.x-navbar-fixed-top) {
background: transparent !important;
}
.x-navbar-wrap .x-navbar { background: rgba(10, 56, 96, 0.82) !important; }
and in simple css field:
.x-topbar, .x-navbar-wrap {background: transparent;}
h2.h-entry-cover-content {
color: #fff;
font-size: 14px;
left: 0;
letter-spacing: 0;
line-height: 1.5em;
margin: 0;
opacity: 0;
padding: 1.5em;
position: absolute;
right: 0;
text-transform: uppercase;
top: calc(100% - 13.3em);
transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.x-iso-container-portfolio article a.entry-cover:hover .h-entry-cover-content {
opacity: 1;
}
.x-nav-wrap.mobile.collapse.in {
display: block;
margin: 0 -16px;
}
.x-navbar .mobile .x-nav {
margin: 9px 0;
}
.x-navbar .x-nav-wrap.mobile.collapse.in .x-nav li > a {
background-color: rgba(26, 46, 90, 0.8);
color:#888888 !important;
margin: 0;
}
.x-navbar .x-nav-wrap.mobile.collapse.in .x-nav li > a:hover {
color: #fff !important;
}
