Remove menu bar at the top of theme

  • Unknown's avatar

    I would like to remove the black menu bar at the top of the screen above the header. Is this possible?

    The theme I am using is pinboard.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    This will hide it completely, including the menu items:

    #masthead {
    	display: none;
    }
  • Unknown's avatar

    Thank you very much.
    That makes my site look much cleaner; however I now have no way to link people to my about page and I’ve lost my search bar.

    Is it possible to keep the masthead, but make it block white in colour and much thinner?

  • It is possible :-)

    Please modify the to the following:

    #masthead {
       min-height:0px;
    }

    Please use the following style to fix the search bar at the top so it is always there even when you scroll the page down. I just thought you might like it.

    #masthead {
       min-height:0px;
       position:fixed;
    }
    
    #main {
        padding-top: 5em;
    }
  • The topic ‘Remove menu bar at the top of theme’ is closed to new replies.