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
Customize navbar-nav hiding link
Customize navbar-nav hiding link
- Attachments
-
- example.png (217.76 KiB) Viewed 232 times
Luis Ramirez R.
Re: Customize navbar-nav hiding link
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
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.
Re: Customize navbar-nav hiding link
So, if you want to completely remove one of the menus (as shown in your screenshot), what about the following steps:
- for all tables inside that tableGroup: check "Hide link in navigation menu"
- Remove the tableGroup completely, if necessary
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
AppGini 24.14 Revision 1665 + all AppGini Helper tools
<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 readabilityAppGini 24.14 Revision 1665 + all AppGini Helper tools
Re: Customize navbar-nav hiding link
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.
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.