-
lramirez
- Veteran Member
- Posts: 72
- Joined: 2019-11-01 23:23
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

-
Attachments
-

- example.png (217.76 KiB) Viewed 457 times
Luis Ramirez R.
-
lramirez
- Veteran Member
- Posts: 72
- Joined: 2019-11-01 23:23
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.
-
jsetzer
- AppGini Super Hero

- Posts: 1904
- Joined: 2018-07-06 06:03
- Location: Kiel, Germany
-
Contact:
Post
by jsetzer » 2024-10-17 04:31
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 25.10 + all AppGini Helper tools
-
lramirez
- Veteran Member
- Posts: 72
- Joined: 2019-11-01 23:23
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.