Skip to main content
Solved

Remove part of quick links in community top navigation

  • September 10, 2024
  • 2 replies
  • 25 views

  • Contributor ⭐️⭐️⭐️

I saw in a previous answer that you need to use custom code to remove these, but I just want to remove one and it is “Community Overview”.

How can I do this? Thanks!

 

Best answer by DannyPancratz

#downshift-0-item-0{
display: none;
}

#downshift-0-item-1{
display: none;
}

Add this custom CSS

2 replies

DannyPancratz
Forum|alt.badge.img+9
  • VIP ⭐️⭐️⭐️⭐️⭐️
  • Answer
  • September 10, 2024
#downshift-0-item-0{
display: none;
}

#downshift-0-item-1{
display: none;
}

Add this custom CSS


  • Author
  • Contributor ⭐️⭐️⭐️
  • September 11, 2024

Thanks!