Site logo

[Resolved] Top Bar Widget Area not showing

Home Forums Support [Resolved] Top Bar Widget Area not showing

Home Forums Support Top Bar Widget Area not showing

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1763130
    Tim

    I have activated Header as navigation and made it sticky.

    Now I want to display a top bar above the header (which is also sticky with the header) and have followed the instructions here, but ho top bar appears.

    Site URL attached.

    #1763378
    David
    Staff
    Customer Support

    Hi there,

    the Top Bar is hidden by the Fixed Navigation CSS you have:

    nav#site-navigation {
        position: fixed;
        top: 0;
    }

    Change that to:

    nav#site-navigation {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    #1763390
    Tim

    That worked, thanks!

    #1763466
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.