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

Pinned tabs are too small for me.

  • 3 replies
  • 3 have this problem
  • 7 views
  • Last reply by cor-el

more options

Pinned tabs are really small. I usually have 30 tabs open, and the only way I can tell what a tab is is to look at the title, is there a way to make the pinned tabs include the titles?

Pinned tabs are really small. I usually have 30 tabs open, and the only way I can tell what a tab is is to look at the title, is there a way to make the pinned tabs include the titles?

All Replies (3)

more options

You can see the title if you pass the mouse on the tab:

I also found this old questions, maybe help you:

more options

That last link has a custom style rule you can use to give pinned tabs the same 250 pixel maximum width as other tabs. If that's wider than you need, you could edit the rule to your preference.

more options

that is the way pinned tabs work.
You only see the favicon and not the text.
To see the text on tabs you have have to use normal tabs and reduce its width to a lower minimum.

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#tabbrowser-tabs .tabbrowser-tab:not([pinned]) { max-width:20px!important; }

You can also consider to hide the favicon to see more text.

#tabbrowser-tabs .tab-icon-image { display:none!important; }

you can delete the storage\moz-safe-about+home folder in the Firefox profile folder to reset snippets stored in IndexedDB.

You can use this button to go to the Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

Modified by cor-el