How can i disable the top navigation mendix (home,refresh,back,forward) buttons

1
Hi all, I want to disable the top navigation on the right of standard Mendix Theme. In the standard Mendix theme there are 4 options/buttons: Home, Refresh, Back and Forward. Has anyone experience with disable the buttons. For so far as i can see it a java code inside mendix platform. Any ideas/ solutions?
asked
1 answers
4

You can do this with css styling. Add this in your theming stylesheet:

.mendixToolbar_desktop, .mendixToolbar_refresh, .mendixToolbar_back, .mendixToolbar_forward {
    display:none;
}

You could also do it by removing the MxClient_toolbar in your index.html, but then you will lose the logout button also.

answered