搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

How do I replace icons with text and get rid of logos in front of everything?

  • 7 个回答
  • 4 人有此问题
  • 4 次查看
  • 最后回复者为 gyaltnnh

more options

logos take up too much room, and I hate icons

logos take up too much room, and I hate icons

所有回复 (7)

more options

Hello, I need more information on this.

more options

On bookmarks toolbar, every item is preceded by an unwanted graphic that simply takes up room; how does one get rid of them? On other toolbars, items are now (Firefox57) represented by icons that one has to hover over to get an explanation; I prefer text.

more options

In addition, I like tabs on the bottom row, under the other toolbars; how do I move toolbars into the order I prefer?

more options

Heres how to move tabs on the bottom row: https://www.youtube.com/watch?v=3Xo-OeVjnjs

more options

The answer to all of these questions is "custom style rules in a userChrome.css file" because extensions no longer can make significant changes to the toolbar area. What's a userChrome.css file? See: https://www.userchrome.org/what-is-userchrome-css.html

(1) On bookmarks toolbar, every item is preceded by an unwanted graphic that simply takes up room; how does one get rid of them?

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

(2) On other toolbars, items are now (Firefox57) represented by icons that one has to hover over to get an explanation; I prefer text.

I'm going to look into how to do this.

(3) In addition, I like tabs on the bottom row, under the other toolbars; how do I move toolbars into the order I prefer?

You can download this file as an example: https://www.userchrome.org/samples/userChrome-tabs_on_bottom.css

more options

jscher2000 said

(2) On other toolbars, items are now (Firefox57) represented by icons that one has to hover over to get an explanation; I prefer text.

I'm going to look into how to do this.

Here is an example of a custom style rule you could use:

/* Hide Icons on Main Toolbar */
#nav-bar .toolbarbutton-1:not([skipintoolbarset]) .toolbarbutton-icon, 
#PanelUI-menu-button .toolbarbutton-badge-stack {
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* Show Text Labels on Main Toolbar */
#nav-bar .toolbarbutton-1:not([skipintoolbarset]) .toolbarbutton-text {
  display: -moz-box !important;
  font-size: 14px !important;
  padding: 4px !important;
}
#downloads-button .toolbarbutton-badge-stack, 
#downloads-indicator-anchor, #downloads-indicator-icon, 
#downloads-indicator-progress-outer, #downloads-indicator-progress-inner {
  display: inline-block !important;
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

You would create a userChrome.css file and paste that in. I created a website to help with the project of creating and editing a userChrome.css file. In case you need details for that:

https://www.userchrome.org/how-create-userchrome-css.html

I also saw an icon + text layout from the author of Classic Theme Restorer: https://github.com/Aris-t2/CustomCSSforFx/blob/master/classic/css/toolbars/toolbar_mode_icons_and_text.css

more options

Sorry to take so long to get back to you -- your suggestions worked just fine. Now if Classic Theme Restorer comes up with some nice tab variations and colors, I'll be all set.