Need CSS selector for mobile new topic screen

On our forum (where we have a header), on a mobile phone, when a member selects “new topic,” the navigation header disappears but it leaves up our top level header which is in the way of the new topic form.


We want to get rid of our header on this screen…
Using dev tools, I’m confused as to what selector (class?) is turning off the navigation header (we could use the same one?) or what conditions we would know to turn off the header.

Or is there a better way???

Looks like the z-index might be too high. Try making this change your custom CSS:

.Navigation.Navigation--global {
    z-index: 1;
}
5 Likes

Perfect! Thanks for the help!

1 Like

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