Hide help button

I’m new here, been trying to remove or at least disable the Help button on the nav bar but nothing seems to work.

Does anyone have a step by step instruction?

Screenshot%20(81)

1 Like

Hi @Jibril.

You need to create a css file in your app. Put the css file in the app_name/public/css

Go to Hooks.py and add a line
app_include_css = “/assets/app_name/css/name_of_file.css”

In the name_of_file.css add the following

li.dropdown.dropdown.dropdown-help.dropdown-mobile {
display: none!important;
}

To try it go into incognito mode or clear-cache your browser.

4 Likes

Hi,
use like this,
Screenshot%20from%202020-02-04%2010-37-47

2 Likes

ref,

1 Like