Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

搜索 | 用户支持

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

详细了解

how can I shrink the Site Identity Icon? It takes all the space, no URL visible!

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

more options

I must confess, I heve lots of addons installed, therefore my toolbar is fully loaded. the adress bar is shrunk to a minimum, but there would be absolutely no need for the Page Security Info to be THAT space consuming!!? Who needs the full name of the certificate to be visible all the time! Wouldn´t it be enough to just show it by hovering over it?

Is there any possibility to shrink this annoying text to the size of an icon??

Thanx 4 every hint!

Firefox 5.0.1, Windows XP

I must confess, I heve lots of addons installed, therefore my toolbar is fully loaded. the adress bar is shrunk to a minimum, but there would be absolutely no need for the Page Security Info to be THAT space consuming!!? Who needs the full name of the certificate to be visible all the time! Wouldn´t it be enough to just show it by hovering over it? Is there any possibility to shrink this annoying text to the size of an icon?? Thanx 4 every hint! Firefox 5.0.1, Windows XP

被采纳的解决方案

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

See:


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#identity-icon-label { display:none!important; }
定位到答案原位置 👍 1

所有回复 (7)

more options

选择的解决方案

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

See:


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#identity-icon-label { display:none!important; }
more options

very perfect! Xactly what i expected!

Thank you!!

more options

should definitely be included in Firefox, at least as a configurable option!

more options

You're welcome.

more options

You could also create a new toolbar and move some or all of your add-on icons to it, freeing space on your Navigation toolbar. Of course, that takes additional vertical space.

  1. To create a new toolbar, open the Customize window
    • click Firefox button > Options > Toolbar Layout
    • using the Menu Bar, click View > Toolbars > Customize
    • right-click an empty space in a toolbar and choose Customize
  2. At the mid bottom of the Customize window click Add New Toolbar and give the new toolbar a name
  3. drag an add-on icon to it from your Navigation toolbar to the new toolbar that is displayed; drag as many as you wish to the new toolbar but you must have at lease one item on it for it to remain before clicking Done at the bottom right of the Customize window.

See How can I add extra toolbars


If this reply solves your problem, please click "Solved It" next to this reply when signed-in to the forum.

more options

Here is a variation that shows the label on hover.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#identity-icon-labels { display:none!important; }
#identity-box:hover #identity-icon-labels { display:block!important; }
more options

yes! rocks! genius

由vion于修改