為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

How do I remove an icon from the bookmarks in my toolbar?

  • 4 回覆
  • 1 有這個問題
  • 1 次檢視
  • 最近回覆由 cor-el

more options

When I refreshed Firefox by resetting it to the default, my bookmarks in the bookmark toolbar re-appeared with icons. I had removed them previously to shorten the space each bookmark took up in the toolbar. Now all my toolbar bookmarks do not fit on the toolbar. I want to go back and remove the icons, but none of the customizations, properties, or options have a way of doing it.

When I refreshed Firefox by resetting it to the default, my bookmarks in the bookmark toolbar re-appeared with icons. I had removed them previously to shorten the space each bookmark took up in the toolbar. Now all my toolbar bookmarks do not fit on the toolbar. I want to go back and remove the icons, but none of the customizations, properties, or options have a way of doing it.

被選擇的解決方法

This can be done, via the Delete Bookmark Icons addon for Firefox.

從原來的回覆中察看解決方案 👍 1

所有回覆 (4)

more options

選擇的解決方法

This can be done, via the Delete Bookmark Icons addon for Firefox.

more options

What if I want all the icons and none of the words, in the Bookmarks Toolbar? Can i do that? Thanks! -Sid

more options

Right click on the particular bookmark on the toolbar, then click on Properties. You can abbreviate the Name right down to nothing. You can also put similar bookmarks into Folders with appropriate names on the Bookmarks Toolbar. Again, right clicking on the Bar will offer New Folder.

Not everyone seems to know that the overflow of bookmarks goes down the right side of the page, accessed via the chevrons(double arrowhead) at the end of the toolbar.

more options

Note that you can use code in userChrome.css to hide either name or icon of bookmarks on the Bookmarks Toolbar.

Add code to the userChrome.css file below the default @namespace line.


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

/* use one of these to hide the icons or the label text */
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {display:none!important}
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-text {display:none!important}

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