How can I hide this from all the pages?

Captura de Pantalla 2020-02-25 a la(s) 14.35.29

I want to hide this everywhere, if you are in “About”, it shouldn’t be displayed, if you are in “FAQ”, it shouldn’t be displayed, and so on. :slight_smile:

1 Like

Why would you want to hide about? I don’t understand. How will members know what you are about and who is staff etc…?

2 Likes

It doesn’t seem to be one specific class that includes all these pages, so you could do it this way:

.static-privacy,
.about-page,
.static-faq,
.static-tos {
    .nav-pills {
     display: none;
    }
}

For what reason do you want to hide this menu?

4 Likes

Because I have all of those in topics :slight_smile:

3 Likes

You can certainly hide things with CSS, but you should think twice, for the sake of your users.

A “tabbed menu” design is a very common user experience pattern in web design and one that people have learned to intuitively understand. If you start disappearing tabs when the user is on the page, those users may become confused or disoriented.

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.