Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Learn More

How can i unhide the add-on bar when in fullscreen?

  • 7 yanıt
  • 1 kişi bu sorunu yaşıyor
  • 13 gösterim
  • Son yanıtı yazan: cor-el

more options

I dragged the textfield of the navigation bar into the add-on bar in order to get ehe navigation to the bottom. Now when i turn into FullScreen the add-on bar is hided which results in not having the navigation field. How do i unhide the add-on bar in fullscreen, permanently?

I dragged the textfield of the navigation bar into the add-on bar in order to get ehe navigation to the bottom. Now when i turn into FullScreen the add-on bar is hided which results in not having the navigation field. How do i unhide the add-on bar in fullscreen, permanently?

Seçilen çözüm

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

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


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

#addon-bar[moz-collapsed="true"] { visibility:visible!important; }

If you still wan to be able to hide the Addon bar then use:

#addon-bar[moz-collapsed="true"][collapsed="false"] { visibility:visible!important; }
Bu yanıtı konu içinde okuyun 👍 1

Tüm Yanıtlar (7)

more options

Sorry, Firefox doesn't have that as a feature.

more options

Seçilen çözüm

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

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


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

#addon-bar[moz-collapsed="true"] { visibility:visible!important; }

If you still wan to be able to hide the Addon bar then use:

#addon-bar[moz-collapsed="true"][collapsed="false"] { visibility:visible!important; }

cor-el tarafından tarihinde düzenlendi

more options

I didnt ask for a feature. I asked for a workaround :p

more options

Does the code that I posted above work for you?

more options

Im sorry that previous reply wasnt meant for you.

I tried to add that code to all the css files i found with no succes. I cannot find userChrome.css

Should i make one with notepad.

tnx for trying to help me out :)

more options

BINGO ! :) youre code worked, briljant a thousand thanks

more options

You're welcome