Customize navbar-nav hiding link

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
User avatar
lramirez
Veteran Member
Posts: 68
Joined: 2019-11-01 23:23

Customize navbar-nav hiding link

Post by lramirez » 2024-10-16 17:08

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
Attachments
example.png
example.png (217.76 KiB) Viewed 232 times
Luis Ramirez R.

User avatar
lramirez
Veteran Member
Posts: 68
Joined: 2019-11-01 23:23

Re: Customize navbar-nav hiding link

Post by lramirez » 2024-10-16 20:55

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;
}
Luis Ramirez R.

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1891
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Customize navbar-nav hiding link

Post by jsetzer » 2024-10-17 04:31

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 201 times
  2. Remove the tableGroup completely, if necessary
    AppGini_cUcAcwQIEz.png
    AppGini_cUcAcwQIEz.png (1.7 KiB) Viewed 201 times
    AppGini_GzJfhOYcAV.png
    AppGini_GzJfhOYcAV.png (19.77 KiB) Viewed 201 times
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.14 Revision 1665 + all AppGini Helper tools

User avatar
lramirez
Veteran Member
Posts: 68
Joined: 2019-11-01 23:23

Re: Customize navbar-nav hiding link

Post by lramirez » 2024-10-18 23:17

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.
Luis Ramirez R.

Post Reply