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 to delete the new tab buttin in Firefox 70 (css or otherwise)?

  • 6 replies
  • 1 has this problem
  • 116 views
  • Paskiausią atsakymą parašė OneMoreName

more options

Firefox 70 added a new tab button to my installation. I had been using CSS that got rid of it nicely up to this point. But now it is showing up and I cannot figure out how to make it go away. This is what I had and which worked:

 #TabsToolbar .tabs-newtab-button { display: none ! important }

Any ideas?

Firefox 70 added a new tab button to my installation. I had been using CSS that got rid of it nicely up to this point. But now it is showing up and I cannot figure out how to make it go away. This is what I had and which worked: #TabsToolbar .tabs-newtab-button { display: none ! important } Any ideas?

Chosen solution

The following code should work:

#tabs-newtab-button {
     display:none !important;
}

Hope this helps.

Skaityti atsakymą kartu su kontekstu 👍 1

All Replies (6)

more options

Chosen Solution

The following code should work:

#tabs-newtab-button {
     display:none !important;
}

Hope this helps.

more options

Did you try to remove this button in customize mode (i.e. drag it off the Tab bar to the palette) ?

more options

cor-el said

Did you try to remove this button in customize mode (i.e. drag it off the Tab bar to the palette) ?

When I go into customize mode the new tab button is not shown -- there is no way to drag it off.

more options

Wesley Branton said

The following code should work:
#tabs-newtab-button {
     display:none !important;
}

Hope this helps.

This works -- thanks very much.

more options

If you open customize then the New Tab button should appear at the far right of the Tab bar. When you close customize mode then the plus button moves to the position right after the last tab.

more options

You are right -- I can faintly make it out now that you point it out. The new tab button in customize mode is a dark featureless grey, and my titlebar is a deep blue, so it certainly is not easily visible.

Anyway the problem is solved.