Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1414331

    jsguzmanb
    Participant

    Hi. I have setup my fixed menu.

    On mobile and small screens it is not fixed.

    But if I apply this code:

    body .x-navbar-fixed-top {
    position:fixed !important;
    }

    the brand and the collapsed navbar keep fixed, but without a background. The background does not remain fixed.

    I know it may be something I damaged with a lot of custom code I´ve added, but if you could kindly take a look and help me out I would be really grateful.

    Thanks!

    #1414332

    jsguzmanb
    Participant
    This reply has been marked as private.
    #1414836

    Christian
    Moderator

    Hey there,

    Please try using

    body .x-navbar-fixed-top {
      position:fixed !important;
      min-height: 150px;
    }

    Thanks.