• mrbandit

    (@mrbandit)


    I would like to move the menu\page slide up on the home page. I’ve been all over the css file and can’t find the value that controls this. My menu contains sub-menus and they can’t be seen unless you scroll down some first. Could someone point me in the right direction?

    Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Morphim

    (@morphim)

    I’m not sure if this is what you mean but I’ve moved the header bar / nav to the top of the screen and is now fixed, so the rest of the website scrolls under it.

    Here’s the css I used:

    .navigation-top {
    position: fixed;
    z-depth:9999;
    top: 0;
    width:100%;
    background: #ffffff;
    height:150px;
    }

    The ‘fixed’ takes it out of the flow of the rest of the design.
    ‘Z-depth’ controls the scroll underneath
    ‘top’ sets it, well, to the top
    width makes sure the whole bar is full width and responsive
    height & color can be adjusted to suit.

    Hope that helps

    Thread Starter mrbandit

    (@mrbandit)

    Thanks for the response, but I should have been more clear. I like the menu where it is located, but I wanted to have the frontpage area exposed some initially rather then having to scroll down.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to move up the menu on the homepage’ is closed to new replies.