• Hey,

    I’ve been through the forums at length still haven’t been able to find a thread about removing the menu box completely (including the box and shadow). Please help.

    Also, i need help, adding custom menus on all other pages.

    My website is http://kolscotheritage.org/

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author presscustomizr

    (@nikeo)

    Hi,
    Here’s the code to remove background and shadow for the menu box :
    Copy and paste it in the custom CSS section.

    .navbar .navbar-inner {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    }
    Thread Starter ishitadas

    (@ishitadas)

    Brilliant! thanks!

    Except, is there a way I can reduce the space between the logo and the slider now?

    If its not too much trouble for you.

    Thanks again!
    And great theme btw!

    Right now the space between the logo and the slider is taken by your empty menu. If you’re sure you don’t need it, just add

    .navbar-wrapper {
    display:none;
    }

    This, however, hides your menu throughout the website. So I guess you’ll have to come up with another navigational system. Probably a sidebar menu.

    Thread Starter ishitadas

    (@ishitadas)

    Hey!

    I tried it, but it didn’t work!

    🙁

    Hmm. It got overridden by

    @media (min-width: 1200px) {
    .row-fluid [class*="span"] {display:block;}
    }

    I guess we’ll need to find a stronger selector for it. Try:

    .row-fluid .navbar-wrapper.span9 {display:none;}

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove Menu from main page, adding on sub pages’ is closed to new replies.