Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

CSS code to remove the following from the bookmarks drop down menu?

  • 2 antwoorden
  • 1 heeft dit probleem
  • 59 weergaven
  • Laatste antwoord van Avengement

more options

Hello,

What is the CSS code to remove the following separation lines present in the following image?

https://i.postimg.cc/Jh5rmhBX/Bookmarks-Highlighted.jpg


I have managed to remove all of the text that I was aiming to with the following:

  1. BMB_viewBookmarksSidebar,
  2. BMB_bookmarksShowAllTop,
  3. BMB_bookmarksShowAllTop + menuseparator,
  4. BMB_bookmarksToolbar,
  5. BMB_unsortedBookmarks, {display:none!important;}

However there are still two separator lines that I'm not able to figure out how to remove that were above and below the "Mozilla Firefox" button that you can remove by simply right clicking and hitting "delete".

https://i.postimg.cc/KYTX6kxm/Bookmarks-Menu.jpg


This is what I'm left with above my bookmarks now:

https://i.postimg.cc/KYTX6kxm/Bookmarks-Menu.jpg


Cheers.

Hello, What is the CSS code to remove the following separation lines present in the following image? https://i.postimg.cc/Jh5rmhBX/Bookmarks-Highlighted.jpg I have managed to remove all of the text that I was aiming to with the following: #BMB_viewBookmarksSidebar, #BMB_bookmarksShowAllTop, #BMB_bookmarksShowAllTop + menuseparator, #BMB_bookmarksToolbar, #BMB_unsortedBookmarks, {display:none!important;} However there are still two separator lines that I'm not able to figure out how to remove that were above and below the "Mozilla Firefox" button that you can remove by simply right clicking and hitting "delete". https://i.postimg.cc/KYTX6kxm/Bookmarks-Menu.jpg This is what I'm left with above my bookmarks now: https://i.postimg.cc/KYTX6kxm/Bookmarks-Menu.jpg Cheers.

Gekozen oplossing

Did you intend to hide Other Bookmarks? That is what #BMB_unsortedBookmarks should do so I'm not sure why it was in your first image.

You'll want to use the Adjacent sibling combinator (+ sign) to identify that first circled separator. The separator shown below Other Bookmarks actually is after a hidden Mobile Bookmarks item. Depending on how it was hidden, one of these should work:

#BMB_viewBookmarksSidebar,
#BMB_bookmarksShowAllTop,
#BMB_bookmarksShowAllTop + menuseparator,
#BMB_bookmarksToolbar,
#BMB_unsortedBookmarks, 
#BMB_unsortedBookmarks + menuseparator,
#BMB_mobileBookmarks + menuseparator   {
  display: none !important;
}

The other (lower) separator is part of your bookmarks. Open up the Library window using either

  • Ctrl+Shift+b
  • "Show All Bookmarks"

In the left column, click Bookmarks Menu.

The on the right side, find the separator you want to remove, right-click it, and choose Delete. If you mis-click, use Undo (Ctrl+z).

Does that cover it?

Dit antwoord in context lezen 👍 0

Alle antwoorden (2)

more options

Gekozen oplossing

Did you intend to hide Other Bookmarks? That is what #BMB_unsortedBookmarks should do so I'm not sure why it was in your first image.

You'll want to use the Adjacent sibling combinator (+ sign) to identify that first circled separator. The separator shown below Other Bookmarks actually is after a hidden Mobile Bookmarks item. Depending on how it was hidden, one of these should work:

#BMB_viewBookmarksSidebar,
#BMB_bookmarksShowAllTop,
#BMB_bookmarksShowAllTop + menuseparator,
#BMB_bookmarksToolbar,
#BMB_unsortedBookmarks, 
#BMB_unsortedBookmarks + menuseparator,
#BMB_mobileBookmarks + menuseparator   {
  display: none !important;
}

The other (lower) separator is part of your bookmarks. Open up the Library window using either

  • Ctrl+Shift+b
  • "Show All Bookmarks"

In the left column, click Bookmarks Menu.

The on the right side, find the separator you want to remove, right-click it, and choose Delete. If you mis-click, use Undo (Ctrl+z).

Does that cover it?

more options

jscher2000 said

Did you intend to hide Other Bookmarks? That is what #BMB_unsortedBookmarks should do so I'm not sure why it was in your first image. You'll want to use the Adjacent sibling combinator (+ sign) to identify that first circled separator. The separator shown below Other Bookmarks actually is after a hidden Mobile Bookmarks item. Depending on how it was hidden, one of these should work:
#BMB_viewBookmarksSidebar,
#BMB_bookmarksShowAllTop,
#BMB_bookmarksShowAllTop + menuseparator,
#BMB_bookmarksToolbar,
#BMB_unsortedBookmarks, 
#BMB_unsortedBookmarks + menuseparator,
#BMB_mobileBookmarks + menuseparator   {
  display: none !important;
}

The other (lower) separator is part of your bookmarks. Open up the Library window using either

  • Ctrl+Shift+b
  • "Show All Bookmarks"

In the left column, click Bookmarks Menu.

The on the right side, find the separator you want to remove, right-click it, and choose Delete. If you mis-click, use Undo (Ctrl+z).

Does that cover it?

Sorry, I made a couple of tweeks right before posting which I failed to mention. Thanks for the tip on the botton separator in the "show all bookmarks" menu. I did not realize that was a UI removable item.

Regarding the top separator, your second bolded line took care of that as well.

Final stack looks as follows and took care of evenything:

#BMB_viewBookmarksSidebar,
#BMB_bookmarksShowAllTop,
#BMB_bookmarksShowAllTop + menuseparator,
#BMB_bookmarksToolbar,
#BMB_unsortedBookmarks,
#BMB_mobileBookmarks + menuseparator {display:none!important;}


Thanks for your time.

Bewerkt door Avengement op