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

How do I hide tab bar scroll buttons in FF 76?

  • 5 replies
  • 1 has this problem
  • 84 views
  • Last reply by practik

Basically the same question I had five months ago (https://support.mozilla.org/en-US/questions/1274655).

Before FF 76, I had been using this userChrome CSS to hide the scroll buttons:

toolbarbutton[class^="scrollbutton"] {

  display: none !important;
  }

Now it's stopped working (again). Does anyone know what I need to change?

Basically the same question I had five months ago (https://support.mozilla.org/en-US/questions/1274655). Before FF 76, I had been using this userChrome CSS to hide the scroll buttons: toolbarbutton[class^="scrollbutton"] { display: none !important; } Now it's stopped working (again). Does anyone know what I need to change?

Chosen solution

Try this code in userChrome.css.

toolbarbutton#scrollbutton-up, toolbarbutton#scrollbutton-down {display:none !important;}
Read this answer in context 👍 1

All Replies (5)

The link in my post above got a parenthesis appended to it that doesn't belong there; the URL should be:

https://support.mozilla.org/en-US/questions/1274655

The CSS formatting got messed up too; it should be:

   toolbarbutton[class^="scrollbutton"] {
      display: none !important;
      }

Modified by practik

Chosen Solution

Try this code in userChrome.css.

toolbarbutton#scrollbutton-up, toolbarbutton#scrollbutton-down {display:none !important;}

That worked! But … why? It seems like the new code ought to do exactly the same thing as the old code, so why does only the new code work? Just curious. Thanks in any case for your help!

Your code uses a class name and this classname is no longer present and instead they have given each scroll button their own ID. You can verify this with the Browser Toolbox.

Oh duh, somehow I can never keep . and # straight. So this works too:

   toolbarbutton[id^="scrollbutton"] {
       display: none !important;
       }

Thanks again – especially for the Browser Toolbox link!

Modified by practik