搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

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

  • 2 个回答
  • 1 人有此问题
  • 70 次查看
  • 最后回复者为 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于修改