Avatar for Username

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

Learn More

Less and less customization?

  • 5 პასუხი
  • 2 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 4 ნახვა
  • ბოლოს გამოეხმაურა Adon123

  • PLEASE* let everyone put the tabs where they want. Top/bottom/middle/etc.

Ugh. Is it REALLY that hard to write code that positions them were the user likes?

FireFox used to be what the *USER* wanted.

Now it's only "what dev staff wants".

Everything needs a special (buggy) plug-in, just to do the basics, now.

*PLEASE* let everyone put the tabs where they want. Top/bottom/middle/etc. Ugh. Is it REALLY that hard to write code that positions them were the user likes? FireFox used to be what the *USER* wanted. Now it's only "what dev staff wants". Everything needs a special (buggy) plug-in, just to do the basics, now.

გადაწყვეტა შერჩეულია

Hello,

Firefox is so flexible that extensions can implement big UI changes like moving the tab strip. Try installing the Tabs On Bottom extension which is fairly basic and therefore shouldn't be buggy.

პასუხის ნახვა სრულად 👍 0

ყველა პასუხი (5)

შერჩეული გადაწყვეტა

Hello,

Firefox is so flexible that extensions can implement big UI changes like moving the tab strip. Try installing the Tabs On Bottom extension which is fairly basic and therefore shouldn't be buggy.

You can easily move the Tab bar to the lower position with code in userChrome.css as basically you only need to give the Tab bar a higher -moz-box-ordinal-group value (most toolbars have a default -moz-box-ordinal-group:1 to show them in DOM order).

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

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

#TabsToolbar{-moz-box-ordinal-group:10000!important}

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

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

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

ჩასწორების თარიღი: , ავტორი: cor-el

pre 29 It used to be easy to have the adressbar next to the menu and put some buttons around it. (see atttachment)

Is it possible to have the old behaviour back? or what do I have to do to get it back as I had it?

You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29 and have the items on the Navigation Toolbar customizable.

You can check the settings of the CTR extension via its Options/Preferences button on the "Firefox/Tools > Add-ons > Extensions" page.


See also:

Thank you! The extension is what I needed. With it I got it back to how I had it.