Dropdown Menu placement moving

Hi Please could someone elighten me on why my menu is moving away form the menu when at the top of my page, if i scroll a little way it goes ack to underneath the menu where it should be please see images for reference, the bottom image is when the page is at the top, thankyou in advance


Comments

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us the link.

    Thanks

  • i have tried this and it appears to have moved closer, am i on the right track here ?


    #Top_bar .menu li ul {
    	top: 75% !important;
    }
    


  • I think that it will work, but it will move your submenu with the regular, not sticky display.

    To affect only the sticky header, you need to add .is-sticky class.

    It should look like this:

    #Top_bar.is-sticky .menu li ul {
       top: 75% !important;
    }
    

    Thanks

Sign In or Register to comment.