[Support request] transparent mobile menu bug

Home Forums Support [Support request] transparent mobile menu bug

Home Forums Support transparent mobile menu bug

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #462465
    Moses

    I use this CSS to create transparent mobile menu:

    @media (max-width: 768px) {
        .mobile-header-navigation:not(.navigation-stick) {
            background-color: transparent;
        }
    }

    But the problem is that it makes the menu items transparent (and hence unreadable) as well.

    #462489
    Leo
    Staff
    Customer Support

    Hi there,

    Try this:

    @media (max-width: 768px) {
        .main-navigation .main-nav ul li a {
            background-color: #ffffff;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.