Creating a new menu location outside of theme options

  • Unknown's avatar

    HI Folks.
    Greetings and a big thank you for any response.
    I’m trying to create a menu to appear in the header of the site above and also to have the site title appearing across the featured header image.
    To all the code gurus THANKYOU
    I’m using the syntax theme

    The blog I need help with is agreyarea.org.

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

  • Unknown's avatar

    Hi, it would be difficult to move the existing menu which is accessible from the menu icon on the left of the site up and into the header area and keep it open at that location. You can though move the existing footer menu up to the top with the following CSS.

    #page {
        position: relative;
    }
    .secondary-navigation {
        position: absolute;
        top: 0;
        z-index: 100;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
    }

    If you wish to have a menu in the footer area as well, you could add a Custom Menu Widget to the footer of your site. You have 3 footer widget areas, and could use one of the others so things will balance out. You may also think about distributing the widgets you have now partly into the other two footer widget areas so that things are more balanced and there isn’t the large white space to the right.

  • The topic ‘Creating a new menu location outside of theme options’ is closed to new replies.