My OP is a cropped picture of the top o my Firefox's 'Bookmarks' pop-out menu. I use it all the time. I'm trying to increase the area/landscape for the actual bookmarks. I'd like to either shrink, or delete entirely, the texts/areas you see. I'd like to:>shrink/remove the "Search bookmarks" box>shrink/remove the "Bookmarks Toolbar" text/area>shrink/remove the "Bookmarks Menu" text/areaIf removing can't work but shrinking will, keep in mind I don't want to shrink the size of the actual bookmarks.I feel the answer(s) lie in the firefox about:config area, but I'm about a 2/10 when it comes to my experience/knowledge/know-how of configuring/changing stuff in there. I defer to you anons, especially the firefox a:c gurus. Please help - my google'ing has turned up nothing much..
Bump
>>1508742Best I could do is move the search to the bottom left and make it expand when hovering in the userChrome.css. Also, I made the sidebar title thinnerTo remove the Menu and Other rows, you will need to use userChrome.js which I can't be bothered to do :P
>>1509197To make a userChrome.css you need to follow this: https://www.userchrome.org/how-create-userchrome-css.html (Basically making a folder and adding the .css file in there)Also, in about:config, toggle toolkit.legacyUserProfileCustomizations.stylesheets to enable itThe userChrome.css to do this is this:/*slightly thinner sidebar header */#sidebar-header { padding-block: 4px !important;}/*bookmarks search to the top right and expand on hover*/#bookmarksPanel #sidebar-search-container { position: fixed; bottom: 0; left: 0; z-index: 1;}#bookmarksPanel #search-box:not(:hover) { width: 18px !important; }