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

Pin Tabs - all tabs to the right

  • 1 svar
  • 1 har dette problemet
  • 3 views
  • Siste svar av cor-el

more options

Hi:

I really like the feature (bookmark all tabs -- to the right), and the feature (close all tabs - to the right)

I would like to PIN all tabs - to the right.

is there any way this can be done?

thankyou

Hi: I really like the feature (bookmark all tabs -- to the right), and the feature (close all tabs - to the right) I would like to PIN all tabs - to the right. is there any way this can be done? thankyou

All Replies (1)

more options

Maybe try this code in the userChrome.css file.
You need to have enough tabs open the move the pinned tabs to the far right.

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

#tabbrowser-tabs tab[pinned] { -moz-box-ordinal-group: 2; }

Another possibility is to reverse the direction of all tabs on the tab bar.

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

#tabbrowser-tabs { direction: rtl; }
#tabbrowser-tabs tab { -moz-box-ordinal-group: 2; }

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

Make sure to create the userChrome.css file as a plain text file.

Endret av cor-el