RE-POSITIONING HELP PLEASE

  • Unknown's avatar

    Hi

    how do i move my header image above the menu?

    how can i center my menu so it looks even

    how can i prevent my menu from going over two lines in the ipad view

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

  • Could you remove this existing rule:

    .main-navigation {
        position: relative
    }

    and add

    .main-navigation {
        position: absolute;
        top: 295px;
        left: 286px;
    }
    
    div#main {
        margin-top: 50px;
    }

    To center the menu keep adjust the left value above.
    In the iPad I see your menu items in a single row. I wonder if you had more menu items earlier.

  • Unknown's avatar

    Thanks what about the header?

    is there a way to get the full menu on my iphone, because if i dont have the mobile theme it just shows me a small menu button and when i press it all the links come down?

  • The CSS I gave you earlier will push the header to above the menu.

    i dont have the mobile theme it just shows me a small menu button and when i press it all the links come down

    That’s how mobile themes are designed to accommodate menu on smaller phone screens.

  • Unknown's avatar

    i have followed your code and disabled the mobile theme and now i cant see the menu at all on my iphone

  • Unknown's avatar

    i mean all i see is the word menu …..can i get it to look like the desktop site?

  • Unknown's avatar

    also when input the above code it makes the menu move half way down on the ipad

  • Let’s include the previous style I gave you in a media query:

    @media screen and (min-width: 992px){
    .main-navigation {
        position: absolute;
        top: 295px;
        left: 286px;
    }
    
    div#main {
        margin-top: 50px;
    }
    }

    This way, menu moves above the header only on desktop screens. Menu on the tablets and iPhone screens will remain as it is now.

    i mean all i see is the word menu …..can i get it to look like the desktop site?

    This is how menu is designed to display on smaller screens. I don’t know how to change it to display full menu like on desktop.

    also when input the above code it makes the menu move half way down on the ipad

    Please use the CSS in this update that has media query. This way the menu behavior on iPad will remain will remain as it was before adding this CSS.

    And please don’t forget to remove the following custom CSS rule you currently have.

    .main-navigation {
        position: relative
    }

    I am really sorry, I could not be more helpful.

  • Unknown's avatar

    Thanks for your help ….maybe ill start a new thread and wordpress staff may help

  • The topic ‘RE-POSITIONING HELP PLEASE’ is closed to new replies.