• Hi,

    I would like to remove the menu bar from my wordpress blog https://www.maltabmx.com/Blog as i only use the page as a blog and do not wish to have the menu bar with just home as it looks stupid, but i am unable to find the code that i must change to remove it. I have created the template using Artisteer.

    Does anyone have any idea how i can do this please

    Much appreciated

    Naja

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try editing your theme’s header.php template file.

    Open your themes: style.css
    find:

    .art-nav {
        height: 41px;
        position: relative;
        z-index: 100;
    }

    replace with:

    .art-nav {
        height: 41px;
        position: relative;
        z-index: 100;
        display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing the Menu Bar’ is closed to new replies.