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

persona on bottom

  • 1 reply
  • 0 have this problem
  • 22 views
  • Last reply by cor-el

more options

I just upgraded to 3.6.7. The persona now shows up on the bottom of the browser. I liked the grey i had before. how do leave the persona on the top, and grey on the bottom

This happened

Every time Firefox opened

== with upgrade

I just upgraded to 3.6.7. The persona now shows up on the bottom of the browser. I liked the grey i had before. how do leave the persona on the top, and grey on the bottom == This happened == Every time Firefox opened == with upgrade

All Replies (1)

more options

You can set the pref lightweightThemes.persisted.footerURL to false on the about:config page to hide the footer image.

To open the about:config page, type about:config in the location (address) bar and press the Enter key, just like you type the url of a website to open a website. If you see a warning then you can confirm that you want to access that page.


If you need to change the colors on the status bar then you can add code to userChrome.css.

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

#browser-bottombox {
 background-image:none!important;
 background-color:-moz-dialog!important;
 color:black!important;
 text-shadow:none!important;
}
#status-bar {
 -moz-appearance: statusbar !important;
}


Add code to userChrome.css below the @namespace line.
See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

You may need to add -moz-appearance: none!important; to the code between the curly brackets.

Modified by cor-el