• pennettahouse

    (@pennettahouse)


    Here is my website: https://pennettahouse.com

    I am trying to work out how to remove the navigation bar entirely from my website, using the “make” theme.

    I’ve looked down the stylesheet but I there doesn’t seem to be anything I can delete?

    Many thanks in advance

    (FYI: the navigation bar isn’t displaying on the standard browser version but is still visible in the mobile version? (iOS))

Viewing 1 replies (of 1 total)
  • prettykiti09

    (@prettykiti09)

    You have a <div class=”menu”>. I assume this is what you want to remove. You could remove that entire div and any code inside of it. It is most likely located in your header.php. If you can not find it or do not want to actually remove the code you could go into your style.css and add the following
    .menu {
    display: none;
    }

    If you do decide to go this route do realize that the navigation will still load it will just not display. So if you are worried about memory or page speed you would want to actually remove the menu.

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: Make] Remove navigation menu or links’ is closed to new replies.