Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Więcej informacji

How do I remove the Page Actions button?

more options

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.

Wszystkie odpowiedzi (1)

more options

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

Zmodyfikowany przez jscher2000 - Support Volunteer w dniu