• So here is my issue I have a site that is working great except when I get on the mobile version of http://66.147.244.186/~msskatem/wordpress/videos/ the small menu is invisible, it’s there because you can click the link (between the 2 black line at the top) and apparently the list shows up (however still invisible).

    I have tried everything I could think of, to make the text appear but nothing will do…help please!!!
    I don’t know if my css prevents it from being in the right color, the small toggle menu will not take on the color black!!!
    Any help will be highly appreciated.
    Thanks

Viewing 1 replies (of 1 total)
  • It looks like you added some custom CSS to the menu which is causing the mobile version to slide off the left side of the screen. Try adding this to the end of your child theme’s style.css file:

    @media screen and (max-width: 600px) {
       .nav-wrap {
          width: auto;
          float: none;
       }
    }

Viewing 1 replies (of 1 total)

The topic ‘Untitled-child theme toggle Menu not visible’ is closed to new replies.