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.

Buscar en Ayuda

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

How do I delete the bookmark icons on Firefox 22 (Windows)

  • 3 respuestas
  • 5 tienen este problema
  • 18 visitas
  • Última respuesta de gggirlgeek

more options

I used to have the bookmark de-iconizer add-on take care of those icons, but apparently the add-on is no longer compatible with the latest FF release. I'm using Firefox 22 on a Windows 7 platform. I found threads suggesting edits to the userChrome.css file for a similar problem on Mac based platforms, but I'm not quite sure on how I should proceed if I'm using a PC with Windows on it

I used to have the bookmark de-iconizer add-on take care of those icons, but apparently the add-on is no longer compatible with the latest FF release. I'm using Firefox 22 on a Windows 7 platform. I found threads suggesting edits to the userChrome.css file for a similar problem on Mac based platforms, but I'm not quite sure on how I should proceed if I'm using a PC with Windows on it

Solución elegida

It's much simpler to use the Stylish extension instead of userChrome.css.

After installing it, open the Add-ons Manager, User Styles cateogory. Click the Write a New Style link at top. Paste your CSS code there, and click the Preview button to see what the changes look like. Click the Save button if you're happy with the result.

If you only want to remove icons from the Bookmarks Toolbar — which is what the Bookmarks Deiconizer extension used to do — then this is the CSS code to use:


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

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {
  display: none !important;
}

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-menu-dropmarker {
  display: -moz-box !important;
}

If you insist on userChrome.css instead of Stylish, see the instructions below.

Keep in mind the following:

  • The file name is case-sensitive: userChrome.css
  • The file extension is .css — you may need to display file extensions in Windows to avoid naming it .css.txt by accident.
  • Firefox must be restarted for changes in userChrome.css to take effect.
Leer esta respuesta en su contexto 👍 3

Todas las respuestas (3)

more options

Solución elegida

It's much simpler to use the Stylish extension instead of userChrome.css.

After installing it, open the Add-ons Manager, User Styles cateogory. Click the Write a New Style link at top. Paste your CSS code there, and click the Preview button to see what the changes look like. Click the Save button if you're happy with the result.

If you only want to remove icons from the Bookmarks Toolbar — which is what the Bookmarks Deiconizer extension used to do — then this is the CSS code to use:


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

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {
  display: none !important;
}

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-menu-dropmarker {
  display: -moz-box !important;
}

If you insist on userChrome.css instead of Stylish, see the instructions below.

Keep in mind the following:

  • The file name is case-sensitive: userChrome.css
  • The file extension is .css — you may need to display file extensions in Windows to avoid naming it .css.txt by accident.
  • Firefox must be restarted for changes in userChrome.css to take effect.

Modificadas por Gingerbread Man el

more options

I wasn't aware of that particular extension. I got the extension, used your code, and I added some margins on either side.. and it was perfect!

Thanks!

more options

Gingerbread_man's script did not work for me but this one did (from here: http://forums.mozillazine.org/viewtopic.php?f=38&t=675505&start=0&st=0&sk=t&sd=a.)


___________________________________________________

#urlbar > #urlbar-icons > #star-button
{
display: none !important;
}

____________________________________________________

Note: I am using Firefox 16 and Palemoon 12 though.

Modificadas por gggirlgeek el