how to move menus below header

  • Unknown's avatar

    how to move menus below header

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

  • Unknown's avatar

    Hi mericetta,

    In order to do this I believe you would need to have the Custom Design product add-on.

    This would allow you to add Custom CSS code that we could use to move the menu below the header.

    http://en.support.wordpress.com/custom-design/

    You can preview the changes before purchasing to make sure you can do what you want it to.

    If in your Dashboard you go to Appearance then Custom Design, then click on the CSS tab.

    You will have a box on the right hand side you can add your CSS code to. I believe the code below might do what you are looking for so you could try copy and pasting it in there.

    header#masthead {
        position: relative;
        padding-bottom: 50px;
    }
    nav#site-navigation {
        position: absolute;
        top: 290px;
    }

    Hope that helps.

  • The topic ‘how to move menus below header’ is closed to new replies.