• I am happy with how everything is set up on my website (www.foxandpinestitches.com). I just realized that when on a mobile device my drop down sub headings on my menu are the same color as the text, and therefore not visible. Any tips on how to fix this so it’s the same as my site on a browser? Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • If you want to have the same background for mobile as for desktop, use the following custom CSS code:

    @media only screen and (max-width: 768px) {
        .genesis-nav-menu.responsive-menu .sub-menu li a {
            background: #555555;
            border: 1px solid #fff;
        }
    }

    If you need additional refinement, kindly let me know.

Viewing 1 replies (of 1 total)
  • The topic ‘Drop Down Menu Wrong Color on Mobile Only’ is closed to new replies.