How do I remove the Page Actions button?
How do I remove the Page Actions button? It does nothing for me except occasionally get in the way when I try and bookmark things.
All Replies (1)
Do you mean the ••• button? You can use a custom style rule to hide it if you're sure you'll never use any of the commands on it. Or you could use a rule that hides it most of the time, but if you keep your mouse over that area (e.g., over the bookmark star or reader mode icon) for at least 3 seconds, then it slides in. Then you're covered no matter what.
/* Hide separator, only show ••• button after 3-sec hover */
#pageActionSeparator {
display: none !important;
}
#page-action-buttons #pageActionButton {
width: 0 !important;
padding: 0 !important;
transition: all 1s ease-in-out;
}
#page-action-buttons:hover #pageActionButton {
width: 24px !important;
padding: 4px !important;
transition: all 1s ease-in-out 3s;
}
You can apply custom style rules to Firefox's user interface using a userChrome.css file. If you've never used one before, you can find information on how to create and edit it here: https://www.userchrome.org/how-create-userchrome-css.html
Modified