Site logo

Archived topic

Can I hide the top bar on mobile devices?

4 replies · Started by v4ncouver on July 9, 2017

Viewing posts 1–5 of 5

Hello everyone,

I created a menu with only two items in it. Register and Login|out
This custom menu is in the top bar and looks nice on the desktop

On small screens, it takes up too much space and I wonder if I can hide the top bar on smartphones as well as add the two items (Register and Login/out) to the regular main menu?

Try adding this to CSS:

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

Adding CSS article.

EDIT: Sorry didn't see Leo had posted =)

Thanks Leo and David.

Glad we could help :)

This archived topic is closed to new replies.