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

Removing "Other Bookmarks, Bookmarks Menu" permanently!

  • 6 balasan
  • 0 ada masalah ini
  • 11 paparan
  • Balasan terakhir oleh bitsukha

more options

Hi everyone! Help me to solve the issue to get rid of these two folders in sidebar and drop-down menu. Is there any kind of tweaks css? I use Firefox 130.0 version. Look at the screenshot https://postimg.cc/vx5PCK0q

This link https://support.mozilla.org/questions/1389957 helped me but not for all cases.

Hi everyone! Help me to solve the issue to get rid of these two folders in sidebar and drop-down menu. Is there any kind of tweaks css? I use Firefox 130.0 version. Look at the screenshot https://postimg.cc/vx5PCK0q <!--https://imgbox.com/fjL97vAX--> This link https://support.mozilla.org/questions/1389957 helped me but not for all cases.
Lampirkan skrinsyot

Diubah oleh NoahSUMO

All Replies (6)

more options

In the sidebar and in the Bookmarks Manager (Library) you have treechildren type of content and this doesn't allow to affect/hide specific content via userChrome.css. This is only possible in a menu type list like the toolbar Bookmarks Menu button and in the Bookmarks menu. You can't remove any of the root folders that appear directly under the "All Bookmarks" folder. Note that in some case you only see the Other Bookmarks folder when there are bookmarks stored in this folder, same for mobile bookmarks from other devices.

Helpful?

more options

Sorry to hear that :(

I have another question that bothers me. It's about reducing the right drop-down menu. I outlined my issue in uploaded short video of my Mega cloud - https://mega.nz/file/kuYDBAYD#rXUJNbw0YJqEWJLpIUijz9kQ12tCZFd6CiTPWT3MWbc


I'd like to tighten them up the same way like I did for left bookmarks toolbar due to userChrome.css: (and set the space to 2x, just excellent!) ______________________________ /*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/

menupopup:not(.in-menulist) > menuitem, menupopup:not(.in-menulist) > menu {

 padding-block: 2px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
 min-height: unset !important; /* v92.0 - for padding below 4px */

}

root {
 --arrowpanel-menuitem-padding: 4px 8px !important;

} _____________________________

Could you help me finding solution for this at least?? I'd really appreciate your help.

Helpful?

more options

I use CSS code like this in userChrome.css that works in Compact mode.

:root[uidensity=compact] menupopup :is(menu,menuitem) {
 padding-block: 2px !important; /*adjust: 0px-4px*/
 min-height: 22px !important;   /*adjust: 21px-24px or unset*/
 height: 26px !important;       /*adjust*/
}
:root[uidensity=compact] {
 --arrowpanel-menuitem-margin: 0 4px !important;
 --arrowpanel-menuitem-padding: 2px 6px !important; /*adjust 2px value*/
}

For the sidebar and the Library (treechildren), you can use this CSS code.

:is(#bookmarks-view, #historyTree, #editBMPanel_folderTree, #placesList, #placeContent)
treechildren::-moz-tree-row {margin-top: 0px !important; min-height: 22px !important; height: 22px !important;}

Helpful?

more options

Unfortunately, It did not help at all.

Helpful?

more options

Note that the code only works if you have enabled "Density: Compact mode" in the Customize page (or leave out [uidensity=compact]). The sidebar code doesn't has this restriction.

Does other CSS code in userChrome.css work? You can try a userChrome.css with only the code I posted above as a test in case there is a problem with your current userChrome.css.

Helpful?

more options

cor-el said

Note that the code only works if you have enabled "Density: Compact mode" in the Customize page (or leave out [uidensity=compact]).

I know that. I was trying separately to put these css one by one, but it's not effected the reducing right drop-down menu.

Helpful?

Tanya soalan

You must log in to your account to reply to posts. Please start a new question, if you do not have an account yet.