Page 1 of 1

How to hide Breadcrumb?

Posted: Sun Nov 28, 2021 4:24 am
by miasoft
In one specific application of mine, I would like to hide Breadcrumb. Is it possible?

Re: How to hide Breadcrumb?

Posted: Sun Nov 28, 2021 4:56 am
by kev1n
Do you want to hide all breadcrumbs or just the last one?

Re: How to hide Breadcrumb?

Posted: Sun Nov 28, 2021 7:31 am
by miasoft
kev1n wrote:Do you want to hide all breadcrumbs or just the last one?
Only nuUserHome and only for users, not for globeadmin (developer). All users have
a different nuUserHome-forms with slight differences.
The nuUserHome has a single HTML object with pure HTML + css + js, database is not used.

Re: How to hide Breadcrumb?

Posted: Sun Nov 28, 2021 7:45 am
by miasoft
Yes, I can change height for BreadCrumbs in css to 1px, but it affects all forms. :?
kev1n wrote:Do you want to hide all breadcrumbs or just the last one?

Re: How to hide Breadcrumb?

Posted: Sun Nov 28, 2021 7:46 am
by kev1n
Hiding HTML elements is no rocket science: Open up the developer console (usually F12), pick the element to retrieve its id and use the nuHide() function to hide it.

(Open gif image in full screen)

Re: How to hide Breadcrumb?

Posted: Sun Nov 28, 2021 8:17 am
by miasoft
kev1n wrote:Hiding HTML elements is no rocket science: Open up the developer console (usually F12), pick the element to retrieve its id and use the nuHide() function to hide it.
Thanks! In my case, I applied nuHideHolders(1) for user's nuUserHome-forms.
P,S. It seems that I should look more often in the manuals :oops: