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 can i change bookmarks text colors, not toolbar text color.

  • 4 risposte
  • 2 hanno questo problema
  • 98 visualizzazioni
  • Ultima risposta di the-edmeister

more options

I know how to change color of toolbar text but still want to change the text color of bookmarks.

I know how to change color of toolbar text but still want to change the text color of bookmarks.

Soluzione scelta

You can experiment with code like this in the userChrome.css file.

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

#personal-bookmarks .bookmark-item > .toolbarbutton-text {color:#000!important; background-color:-moz-dialog!important}

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

Leggere questa risposta nel contesto 👍 1

Tutte le risposte (4)

more options

Soluzione scelta

You can experiment with code like this in the userChrome.css file.

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

#personal-bookmarks .bookmark-item > .toolbarbutton-text {color:#000!important; background-color:-moz-dialog!important}

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

more options

After 10 minutes tweaking that bit of code this way and that way, I got what I was after. Thank you very much cor-el. ;))

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

  1. personal-bookmarks .bookmark-item {
color: #FFFFFF !important;
background-color: -moz-dialog !important;

}

more options

can u do it without code?

more options

okietallman,

On Firefox 26, as this user was using when this thread was started in February?