How do I hide the pinned tabs please. Do not want to see any

User Help for Mozilla Firefox
Post Reply
max2
Posts: 278
Joined: September 17th, 2011, 5:37 pm

How do I hide the pinned tabs please. Do not want to see any

Post by max2 »

I am using tree style tab too if it matters.

I mainly want to because Distill Web Monitor brings one up when it is running locally. It is ok for it still to but I want it hidden if possible.

I do not want to see it at all.
morat
Posts: 6405
Joined: February 3rd, 2009, 6:29 pm

Re: How do I hide the pinned tabs please. Do not want to see

Post by morat »

Did you try using an addon to hide tabs?

Hide Tabs
http://addons.mozilla.org/firefox/addon/923934

...

You could hide a particular pinned tab with the label and first child selector using the userChrome.css file.

Code: Select all

tab.tabbrowser-tab[label="About About"][pinned]:nth-child(1) {
  display: none !important;
}
Test page
about:about

That style hides the "About About" pinned tab if it is the first tab on the toolbar.

You can show the "About About" pinned tab by moving another pinned tab to the start.

i.e. right click pinned tab > Move Tab > Move to Start

...

You could hide all pinned tabs and use the List all tabs button to unpin a particular pinned tab when needed.

Code: Select all

tab.tabbrowser-tab[pinned] {
  display: none !important;
}
Post Reply