Site logo

[Resolved] Fix the Top Bar

Home Forums Support [Resolved] Fix the Top Bar

Home Forums Support Fix the Top Bar

  • This topic has 3 replies, 2 voices, and was last updated 3 years ago by Fernando.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2558172
    Parag Agarwal

    I want to fix the top bar on crickhit.com

    #2558178
    Fernando
    Customer Support

    Hi Parag,

    Try this CSS:

    .top-bar.grid-container.top-bar-align-center {
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    Alternative code:

    .top-bar.grid-container.top-bar-align-center {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10000;
        max-width: unset;
    }
    
    body{
        margin-top: 39.5px;
    }
    #2558266
    Parag Agarwal

    Thanks

    #2558293
    Fernando
    Customer Support

    You’re welcome, Parag!

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