Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3002710
Sticky Topbar
Closed

Comments

  • annaknt145 started the conversation

    Hi,

    I would like to know if there is any way to make the topbar sticky for desktop view.

    Thanks

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    @media only screen and (min-width: 767px) {
        .penci-top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
        }     #header {
            margin-top: 32px;
        }     .sticky-wrapper.is-sticky #navigation {
            top: 32px !important;
        }
    }

    Regards,
    PenciDesign.



  • annaknt145 replied

    AWESOME!

    Thanks again for the help.