Banish large website logo from URL

User Help for Mozilla Firefox
Post Reply
User avatar
Skylark42
Posts: 13
Joined: June 24th, 2009, 11:19 am
Location: Scotland

Banish large website logo from URL

Post by Skylark42 »

I am bothered by an enormous logo that appears in front of many/most URLs with Firefox. I don't have any other browser, so I don't know if the problem is widespread.

The problem is that I only have a small monitor and the useless logo takes up most of the address bar. Please see screenshot at: http://i64.tinypic.com/20hrl2w.jpg. In this case it's green.

Is there any way to get rid of these images? I want the address to consist of the URL only, e.g. for duckduckgo it should say only http://duckduckgo.com/.
User avatar
Grumpus
Posts: 13246
Joined: October 19th, 2007, 4:23 am
Location: ... Da' Swamp

Re: Banish large website logo from URL

Post by Grumpus »

You can use Location bar/Page three in the extension Classic Theme Restorer 1.6.7 - click "Hide Labels"
On some systems the Hide "I" icon will work for that item on some systems.
Doesn't matter what you say, it's wrong for a toaster to walk around the house and talk to you
User avatar
Skylark42
Posts: 13
Joined: June 24th, 2009, 11:19 am
Location: Scotland

Re: Banish large website logo from URL

Post by Skylark42 »

Thanks, Grumpus; I'll give that a try!
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Re: Banish large website logo from URL

Post by dickvl »

You can use code in userChrome.css file to only show the label on hover.
http://kb.mozillazine.org/userChrome.css

Code: Select all

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

/* Site Identity Button, EV: hide label */
#identity-box #identity-icon-labels {display:none}
#identity-box:hover #identity-icon-labels {display:-moz-box}
You need to create the chrome folder (lowercase) in the profile folder (<xxxxxxxx>.default) if this folder doesn't exist and create the userChrome.css file in this folder using a plain text editor.

See also:
http://kb.mozillazine.org/Editing_configuration
Post Reply