Site logo

Archived topic

top bar not working correctly

1 reply · Started by Michael on October 15, 2018

Viewing posts 1–2 of 2

I'm trying to figure out how to minimize the top bar menu on mobile devices. the top menu looks fine on desktop but on mobile, it's showing all of the menu items and taking up most of the screen. how can I fix this?

Hi there,

Are you wanting to hide it completely on mobile?

If so, you can do this:

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

Let me know :)

This archived topic is closed to new replies.