Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

How to change the about:home Brand Logo in Firefox portable using CSS

  • 1 risposta
  • 1 ha questo problema
  • 1 visualizzazione
  • Ultima risposta di Gingerbread Man

more options

I searched Mozilla Support and I found this archived topic: https://support.mozilla.org/en-US/questions/944199

However the CSS provided in that answer does not work in current versions of Firefox.

1. What CSS should be used to replace the about:home brand logo in Firefox Portable v29 (Australis).

2. If I wish to store my replacement image somewhere inside the Firefox Portable folder, how do I specify a relative path (instead of an absolute one) so that the replacement image can always be found, regardless of where Firefox portable folder is located.

I searched Mozilla Support and I found this archived topic: https://support.mozilla.org/en-US/questions/944199 However the CSS provided in that answer does not work in current versions of Firefox. 1. What CSS should be used to replace the about:home brand logo in Firefox Portable v29 (Australis). 2. If I wish to store my replacement image somewhere inside the Firefox Portable folder, how do I specify a relative path (instead of an absolute one) so that the replacement image can always be found, regardless of where Firefox portable folder is located.

Tutte le risposte (1)

more options

Put the following in the userContent.css file.


@-moz-document url("about:home") {
#brandLogo { background-image: url("brandlogo.png") !important; }
}

  • Your image should be 192×192.
  • Your image should be placed in the chrome folder, next to userContent.css.
  • Otherwise, you can use relative paths as usual, ../ meaning up one folder and so on. See Absolute and Relative Paths | About.com for details.
  • If you're using Stylish instead, then you have a choice of either embedding the image using the Insert button, or specifying an absolute path. Firefox presumably tries to fetch the image from chrome://… so specifying a relative path isn't possible.

Modificato da Gingerbread Man il