• Resolved KevinMcK

    (@kevinmck)


    I’m wondering if it’s possible to disable the top menu. Also, how can I make the footer background white again?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Menu :: That is controled by a menu location.

    Dashboard => Appearance => Menus

    Create a new menu and don’t add any items to it, then assign it to the Primary Menu.

    Footer :: Change the footer to white is a css edit:

    #footer {
        background: none repeat scroll 0 0 #222222;
        border-top: 1px solid #E6E6E6;
        clear: both;
        font-style: normal;
        margin: 30px 0 0;
    }

    Change the #222222 to #ffffff. Best to use a child theme when customizing.

    Thread Starter KevinMcK

    (@kevinmck)

    That just creates a blank menu that pops up when I scroll down. I don’t want any menu to pop up when I scroll down.

    Theme Author Misam Saki

    (@misamplus)

    Remove this code in header.php
    <?php wp_nav_menu( array( 'theme_location' => 'top', 'menu_class' => 'nav-menu menu-top hidden' ) ); ?>

    For Footer color use top posts but I put an option for changing Footer color to white or dark in next version (comming soon)

    Theme Author Misam Saki

    (@misamplus)

    And remove “#main-navigation.fixed” block from “css/style.css” file.

    Thread Starter KevinMcK

    (@kevinmck)

    Ok, but that doesn’t resolve the issue. That eliminated the top menu from popping up, but it still caused my links to disappear for no reason when scrolling down.

    Theme Author Misam Saki

    (@misamplus)

    I removed that code from header.php and that block from style file and it resolved!

    If you can not do this, wait for next version that comming two days later 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How do I disable the top menu?’ is closed to new replies.