Page 1 of 1

Customize navbar-nav hiding link

Posted: 2024-10-16 17:08
by lramirez
Good morning... group.
I just want to remove a specific link from the navigation bar without altering other functions
... (nav navbar-nav) I tried with css but it hides the whole bar.

Some options could be:
1. hide only the link
2. block it
3. disable it

Is this possible?

I tried a few times but it alters all the links in the bar and I just want to remove a specific link, as shown in the example image.

Thanks :D

Re: Customize navbar-nav hiding link

Posted: 2024-10-16 20:55
by lramirez
Hi.. I managed to do something in CSS
that works for me, even though I removed them all... but if anyone has an idea of ​​how to remove only the one I need to not see... I appreciate your support

Code: Select all

ul.nav:nth-child(1)
{
    display: none;
}

Re: Customize navbar-nav hiding link

Posted: 2024-10-17 04:31
by jsetzer
So, if you want to completely remove one of the menus (as shown in your screenshot), what about the following steps:
  1. for all tables inside that tableGroup: check "Hide link in navigation menu"
    AppGini_a7rcFhZ5pQ.png
    AppGini_a7rcFhZ5pQ.png (1.67 KiB) Viewed 4975 times
  2. Remove the tableGroup completely, if necessary
    AppGini_cUcAcwQIEz.png
    AppGini_cUcAcwQIEz.png (1.7 KiB) Viewed 4975 times
    AppGini_GzJfhOYcAV.png
    AppGini_GzJfhOYcAV.png (19.77 KiB) Viewed 4975 times

Re: Customize navbar-nav hiding link

Posted: 2024-10-18 23:17
by lramirez
Oh noooo...
I think that out of desperation to get the project up and running I hadn't seen this... XD XD

Thank you very much...jsetzer.. you are always so wise.