I am trying to make it so that my logo shows up on the mobile menu on my iPad in portrait mode. Support provided the code below to me which I used successfully on my iPhone. The problem is that on my iPad in portrait mode, I have a transparent background set. If I use this code, the transparent background shows at the top. Can you give me some quick css to add a black background behind the logo (only when mobile menu is active) so that when I have the code below in quick css the mobile menu will look like my attached screen shot of my iPhone. Thanks!
@media only screen and (min-width: 768px) and (max-width: 989px) {
ul#mobile-advanced {
padding-top: 0;
margin-top: 85px;
}
Hey djshortkut!
Please try adding following code to Quick CSS
.show_mobile_menu #header { background-color: black !important; }
Cheers!
Yigit
That worked! You can close this thread.