Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

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
Archived

How do I remove the Page Actions button?

jscher2000 -... replied
wadledo

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.

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 by jscher2000 - Support Volunteer