Site logo

Archived topic

Top Bar Display on Mobile - Responsive Top Bar

1 reply · Started by Dustin on October 15, 2018

Viewing posts 1–2 of 2

How can I get the top bar to display in mobile, and not just on desktop?

Also, can you include an option for making the top bar sticky on mobile, and an option for making the top bar not sticky on mobile?

Hi there,

In your custom CSS, remove this:

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

To make the top bar sticky, you can try this:

.top-bar {
    position: sticky;
    top: 0;
}
This archived topic is closed to new replies.