This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

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

Èròjà atẹ̀lélànà yii ni a ti fi pamọ́ fọ́jọ́ pípẹ́. Jọ̀wọ́ béèrè ìbéèrè titun bí o bá nílò ìrànwọ́.

How do I show the bookmarks toolbar while in fullscreen on Firefox 20? In older versions you could edit the userChrome.css file. Does that still exist?

  • 2 àwọn èsì
  • 3 ní àwọn ìṣòro yìí
  • 8 views
  • Èsì tí ó kẹ́hìn lọ́wọ́ choachy

more options

After searching for this option, it appears it was very easy to do in older versions of firefox on windows 7. Many posts say you can edit the userChrome.css file to add:

  1. PersonalToolbar[moz-collapsed="true"] {
 visibility: visible !important;

}

However, on 2 machines with firefox 20, I've searched for that file and cannot find it. Does it even exist any more? if not, how can I set firefox to go to fullscreen mode and continue to show the bookmarks toolbar? Unchecking hide toolbars does not work for the bookmarks toolbar.

After searching for this option, it appears it was very easy to do in older versions of firefox on windows 7. Many posts say you can edit the userChrome.css file to add: #PersonalToolbar[moz-collapsed="true"] { visibility: visible !important; } However, on 2 machines with firefox 20, I've searched for that file and cannot find it. Does it even exist any more? if not, how can I set firefox to go to fullscreen mode and continue to show the bookmarks toolbar? Unchecking hide toolbars does not work for the bookmarks toolbar.

Ọ̀nà àbáyọ tí a yàn

userChrome.css does not exist by default. You can create it; it's an ordinary text file. Note that you do need a namespace at the beginning of the file.

You could try this:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar[moz-collapsed="true"]{
  visibility: visible !important;
}
#navigator-toolbox[inFullscreen="true"]{
  margin-top:-62px !important;
}

I added the second rule to prevents the toolbar area from rolling all the way up. The specific value may need to be adjusted by a few pixels depending on your toolbar heights.

Ka ìdáhùn ni ìṣètò kíkà 👍 1

All Replies (2)

more options

Ọ̀nà àbáyọ Tí a Yàn

userChrome.css does not exist by default. You can create it; it's an ordinary text file. Note that you do need a namespace at the beginning of the file.

You could try this:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar[moz-collapsed="true"]{
  visibility: visible !important;
}
#navigator-toolbox[inFullscreen="true"]{
  margin-top:-62px !important;
}

I added the second rule to prevents the toolbar area from rolling all the way up. The specific value may need to be adjusted by a few pixels depending on your toolbar heights.

Ti ṣàtúnṣe nípa jscher2000 - Support Volunteer

more options

Thank you very much. I cant believe I didnt try creating the file. *embarrassed*