• Resolved AngelysProd

    (@angelysprod)


    Hi,

    I configured the options in fixed top position, but the topbar hides WordPress admin bar and part of my menu. What should I do?

    Thanks.
    Best Regards.

Viewing 1 replies (of 1 total)
  • Plugin Contributor duynguyen

    (@duynguyen)

    Hi @angelysprod,

    The top bar has highest priority to ensure that it always display on the site. It has 100000 value of z-index CSS priority. If you want to show the admin bar you can change the CSS value like this:

    
    .wpnt-topbar-box {
        z-index: 999!important; // just give its any values which less 100000
    }
    

    regarding to hide the menu problem, cause you use fixed position so we have 2 solutions to solve this.

    – Change your position value to absolute. But this will scroll both top bar when you scroll the mouse. I don’t think this is your desire.
    – Or you can set CSS for your header like this:

    
    .your-header-class {
        margin-top: {xxxx}px;
    }
    

    xxx should equal height of the top bar.

    You may put your custom CSS in WP Nice Topbar/settings/CSS tab

    Hope this resolved your problems!

    Thanks and Regards,
    Duy

Viewing 1 replies (of 1 total)
  • The topic ‘Header top position problem’ is closed to new replies.