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 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 105 views
  • Last reply by OneMoreName

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?

தீர்வு தேர்ந்தெடுக்கப்பட்டது

The following code should work:

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

Hope this helps.

Read this answer in context 👍 1

All Replies (6)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

The following code should work:

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

Hope this helps.

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

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.

Wesley Branton said

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

Hope this helps.

This works -- thanks very much.

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.

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.