How To Get The Drop Down Bookmarks & History Button?
Moderator: trava90
Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
How To Get The Drop Down Bookmarks & History Button?
I have the Bookmarks button that opens the sidebar, but I would also like the Bookmarks button that drops down my Bookmarks.
If I go to customize, it is actually there, but is hidden once I exit customize. The History button is also there, but won't display when I exit customize.
Any ideas how I get both of them to display after exiting customize?You do not have the required permissions to view the files attached to this post.
-
- Moon Magic practitioner
- Posts: 2985
- Joined: 2015-09-26, 04:51
- Location: U.S.
Re: How To Get The Drop Down Bookmarks & History Button?
It's only visible in the top area of the browser when the menu bar is hidden. Though if it's put on the status bar it will be visible independent of menu bar display.
(Afaik it was implemented this way because the Bookmarks menu, when visible, is considered to make the button redundant.)
-
- Board Warrior
- Posts: 1041
- Joined: 2012-09-04, 15:19
- Location: Union City Georgia USA
Re: How To Get The Drop Down Bookmarks & History Button?
You need to enable the "Menu Bar". Right click a blank space on a toolbar and check "Menu Bar".
EDIT: Never tried the StatusBar just never could get the button to show on any other toolbars.
Have never tried them but these may work for you.
https://codefisher.org/toolbar_button/b ... u-button2/
https://codefisher.org/toolbar_button/b ... tory-menu/
EDIT: Never tried the StatusBar just never could get the button to show on any other toolbars.
Have never tried them but these may work for you.
https://codefisher.org/toolbar_button/b ... u-button2/
https://codefisher.org/toolbar_button/b ... tory-menu/
--------------------------------------------------------------------------------------------------------------
Dell Precision 15 7550
Windows 10 Pro. 22H2
Xeon W-10885M
64 GB DDR4 ECC memory (128 GB max)
500 GB Corsair T500 main M2 SSD
1 TB Intel storage M2 SSD (6 TB max)
Intel onboard GPU 1080p
Quadro RTX 5000 Max-Q GPU 4K
Pale Moon 33.6.x x64 AVX2 build
The difference between the Impossible and the Possible lies in a man's Determination.
Tommy Lasorda
Dell Precision 15 7550
Windows 10 Pro. 22H2
Xeon W-10885M
64 GB DDR4 ECC memory (128 GB max)
500 GB Corsair T500 main M2 SSD
1 TB Intel storage M2 SSD (6 TB max)
Intel onboard GPU 1080p
Quadro RTX 5000 Max-Q GPU 4K
Pale Moon 33.6.x x64 AVX2 build
The difference between the Impossible and the Possible lies in a man's Determination.
Tommy Lasorda
Re: How To Get The Drop Down Bookmarks & History Button?
So, do you mean that I would have the buttons at the bottom?coffeebreak wrote: ↑2019-07-05, 09:25It's only visible in the top area of the browser when the menu bar is hidden. Though if it's put on the status bar it will be visible independent of menu bar display.
(Afaik it was implemented this way because the Bookmarks menu, when visible, is considered to make the button redundant.)
-
- Fanatic
- Posts: 182
- Joined: 2016-09-23, 11:58
Re: How To Get The Drop Down Bookmarks & History Button?
Wrong solution, see coffeebreak post bellow.
Last edited by Marcus on 2019-07-06, 16:12, edited 1 time in total.
-
- Moon Magic practitioner
- Posts: 2985
- Joined: 2015-09-26, 04:51
- Location: U.S.
-
- Fanatic
- Posts: 182
- Joined: 2016-09-23, 11:58
Re: How To Get The Drop Down Bookmarks & History Button?
You're right, I didn't pay enough attention to the OP's snapshots.coffeebreak wrote: ↑2019-07-06, 13:00But if you want them visible at the top (where they presumably are now), you'll need to disable the menu bar.
Re: How To Get The Drop Down Bookmarks & History Button?
Think userChrome and work out a bypass for the hidden attribute 

-
- Moon Magic practitioner
- Posts: 2985
- Joined: 2015-09-26, 04:51
- Location: U.S.
Re: How To Get The Drop Down Bookmarks & History Button?
@Tobin, thanks for the hint, that absolutely works.
@Dypsis,
If you add this to your userChrome.css the boomarks/history buttons will remain visible when the menu bar is enabled:
If you haven't used userChrome before you may need to create it:
@Dypsis,
If you add this to your userChrome.css the boomarks/history buttons will remain visible when the menu bar is enabled:
Code: Select all
#bookmarks-menu-button, #history-menu-button {
display: -moz-box !important;
}
- Open your Pale Moon profile (simplest way is: Help menu > Troubleshooting Information > click "Open Folder");
- Create a folder in your profile and name it chrome
- Inside the chrome folder, create a text document and name it userChrome.css (you're changing the file extension from .txt to .css);
- Open userChrome.css and add the following line at the top of the document (only needs to be added once; be sure never to delete it):
Code: Select all
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
- Then add the code from the first code box. Save it (that's important), and restart the browser if it was open (also important).
Re: How To Get The Drop Down Bookmarks & History Button?
Thanks, coffeebreak.
Working good.
Yeah, I basically wanted to have the buttons similar to the latest Firefox version with the Menu Bar displayed. Firefox can display the Bookmarks Sidebar, Bookmarks drop down and History buttons with the Menu Bar enabled.
That way, it makes seamless switching between the 2 browsers.
Working good.

Yeah, I basically wanted to have the buttons similar to the latest Firefox version with the Menu Bar displayed. Firefox can display the Bookmarks Sidebar, Bookmarks drop down and History buttons with the Menu Bar enabled.
That way, it makes seamless switching between the 2 browsers.