Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 2 replies
  • 1 has this problem
  • 59 views
  • Last reply by 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.

Chosen solution

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?

Read this answer in context 👍 0

All Replies (2)

more options

Chosen Solution

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.

Modified by Avengement