• zolinas924

    (@zolinas924)


    I cannot seem to find the section of code within my css to adjust to remove the navigation bar under the masthead when the menu button pops up (when the screen is shrunk). I’m trying to eliminate the blue bar. Any suggestions would be super helpful. I looked at this too long today. Thanks!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator bcworkz

    (@bcworkz)

    Add to the Additional CSS area of your customizer:

    @media screen and ( max-width: 50em ) {
       .main-navigation, .main-navigation.toggled {
           min-height: 0;
       }
    }

    You may not need the media query part to only apply the rule for narrowed screens, but it’s less likely to disrupt desktop views with it in place.

    Thread Starter zolinas924

    (@zolinas924)

    Thanks! I actually just figured it out a minute ago! Thanks for the quick response, I appreciate it!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove navigation bar when shrunk’ is closed to new replies.