Multi row Bookmarks toolbar FF 57+

Discussion about official Mozilla Firefox builds
Post Reply
josegotme
Posts: 407
Joined: December 23rd, 2008, 11:43 am

Multi row Bookmarks toolbar FF 57+

Post by josegotme »

Anyone no where I can get a multi row bookmark toobar? Google has one .
User avatar
GHM113
Posts: 707
Joined: December 16th, 2015, 3:59 am
Location: Moscow, Russia

Re: Multi row Bookmarks toolbar FF 57+

Post by GHM113 »

Sorry for my poor English.
User avatar
lovemyfoxy
Posts: 2337
Joined: December 11th, 2009, 11:23 am
Location: USA

Re: Multi row Bookmarks toolbar FF 57+

Post by lovemyfoxy »

I lost mine too. Would I copy ALL of that into userchrome? Will it survive the decontamination of XUL?
2 Desktops--Win 7 Ult.SP1 x64/6GB RAM /Firefox 52.9ESR/Waterfox64 2022.11/Thunderbird 52.9ESR/BitWarden PW Manager/Verizon FIOS wired network
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: Multi row Bookmarks toolbar FF 57+

Post by Aris »

That code is for Firefox 57+, so obviously yes, look at the main page: https://github.com/Aris-t2/CustomCSSforFx
User avatar
lovemyfoxy
Posts: 2337
Joined: December 11th, 2009, 11:23 am
Location: USA

Re: Multi row Bookmarks toolbar FF 57+

Post by lovemyfoxy »

I closed FF, added and saved the code. Now how do I make the 2nd row? I tried moving 5 subfolders to the end, but they don't show in the bookmark bar, however they do show in the bookmark sidebar.
2 Desktops--Win 7 Ult.SP1 x64/6GB RAM /Firefox 52.9ESR/Waterfox64 2022.11/Thunderbird 52.9ESR/BitWarden PW Manager/Verizon FIOS wired network
User avatar
MarkRH
Posts: 1358
Joined: September 12th, 2007, 2:30 am
Location: Edmond, OK
Contact:

Re: Multi row Bookmarks toolbar FF 57+

Post by MarkRH »

I suppose one way to test it is to narrow the browser window which should cause the bookmark toolbar to wrap-around and make extra rows. But, this code will probably only work on 57 and maybe 56.

It didn't work with 52 ESR.

Make sense with the changes to UI elements.
User avatar
lovemyfoxy
Posts: 2337
Joined: December 11th, 2009, 11:23 am
Location: USA

Re: Multi row Bookmarks toolbar FF 57+

Post by lovemyfoxy »

I'll move my problem to a separate thread.
2 Desktops--Win 7 Ult.SP1 x64/6GB RAM /Firefox 52.9ESR/Waterfox64 2022.11/Thunderbird 52.9ESR/BitWarden PW Manager/Verizon FIOS wired network
josegotme
Posts: 407
Joined: December 23rd, 2008, 11:43 am

Re: Multi row Bookmarks toolbar FF 57+

Post by josegotme »

Here is the userchrome.css code that does it in 57 +:

#personal-bookmarks {
display: block;
}

#personal-bookmarks #PlacesToolbar {
display: block;
min-height: 0px;
overflow-x: hidden;
overflow-y: auto;
max-height: 999px;
}

#personal-bookmarks #PlacesToolbar > hbox {
display: -moz-stack !important;
left: 0px;
right: 0px;
width: 100%;
}

#personal-bookmarks #PlacesToolbar #PlacesToolbarItems {
overflow-x: visible;
overflow-y: visible;
}

#personal-bookmarks #PlacesToolbar #PlacesToolbarItems > box {
display: block;
}

#personal-bookmarks #PlacesToolbar > .bookmark-item{
visibility: visible !important;
}

#personal-bookmarks #PlacesToolbar .chevron{
display: none;
}

#personal-bookmarks #PlacesToolbar > hbox > hbox{
overflow-x: hidden;
overflow-y: hidden;
}

#personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator[collapsed="true"],
#personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator{
display: none;
}

#personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item{
padding-top: 2px;
padding-bottom: 2px;
/*margin-left: -4px !important;
padding-right: 9.5px !important;*/
}

#personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item:hover:active:not([disabled="true"]),
#personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item[open="true"] {
padding-top: 2px !important;
padding-bottom: 2px !important;
/*-moz-padding-start: 4px;
-moz-padding-end: 2px;*/
}

#personal-bookmarks #PlacesToolbar toolbarseparator{
-moz-appearance: none !important;
visibility: visible !important;
display: inline;
text-shadow: none !important;
border-left: 3px solid ThreeDShadow !important;
border-right: 3px solid ThreeDHighlight !important;
vertical-align: middle;
}

#personal-bookmarks toolbarbutton.bookmark-item[dragover][open]{
-moz-appearance: toolbarbutton;
}

#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar):not(#TabsToolbar) {
max-height: 999px !important;
}
tramp
Posts: 27
Joined: October 18th, 2007, 10:27 pm

Re: Multi row Bookmarks toolbar FF 57+

Post by tramp »

pepegot1 wrote:Here is the userchrome.css code that does it in 57 +:

}

Sorry, I never did this.
How can I add this code to FX 57?
Thank you.
josegotme
Posts: 407
Joined: December 23rd, 2008, 11:43 am

Re: Multi row Bookmarks toolbar FF 57+

Post by josegotme »

open userschrome.css and paste it in. Located at C:/Users/username/Apps/roaming/mozilla/firefox/profiles/xxxxxxxx.deflault/chrome/userchrome.css. If it does not exist then creat it. If you are not computer savy-lay off.
User avatar
smsmith
Moderator
Posts: 19979
Joined: December 7th, 2004, 8:51 pm
Location: Indiana

Re: Multi row Bookmarks toolbar FF 57+

Post by smsmith »

tramp wrote:Sorry, I never did this.
How can I add this code to FX 57?
http://kb.mozillazine.org/UserChrome.css
Give a man a fish, and he eats for a day. Teach a man to fish, and he eats for a lifetime.
I like poetry, long walks on the beach and poking dead things with a stick.
Please do not PM me for personal support. Keep posts here in the Forums instead and we all learn.
tramp
Posts: 27
Joined: October 18th, 2007, 10:27 pm

Re: Multi row Bookmarks toolbar FF 57+

Post by tramp »

Thank you for your help.

It works now :-)
simube
New Member
Posts: 1
Joined: November 14th, 2017, 12:14 pm

Re: Multi row Bookmarks toolbar FF 57+

Post by simube »

Thanks for this help :)

Is there a way to hide the toolbar and show it on hovering over the top bars?
Post Reply