Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Learn More

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

  • 2 одговорa
  • 1 има овај проблем
  • 1 преглед
  • Последњи одговор послао 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.

Изабрано решење

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?

Прочитајте овај одговор са објашњењем 👍 0

Сви одговори (2)

more options

Одабрано решење

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.

Измењено од стране Avengement