Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

On some of the tabs I pin to the top of the browser as an "app" the website icon is simply a dotted square!? Others have the web-logo. Is there a fix for that or procedure I am missing?

more options

Wondering why some website tabs I pin to the browser just show a small dotted square instead of the website's logo. So then, I have to hover over the tab to reveal text as to what site it is! Is there a fix for this??? Thanks

Wondering why some website tabs I pin to the browser just show a small dotted square instead of the website's logo. So then, I have to hover over the tab to reveal text as to what site it is! Is there a fix for this??? Thanks

모든 댓글 (1)

more options

If the web site doesn't provide a Favicon, Firefox uses the default "icon". As of Firefox 8.0 that default icon is the blank dashed square, where earlier versions used an icon that was a bit narrower and looked like a sheet of paper with the upper-right corner folded over.


You can revert to the old default icon with this userChrome.css code.

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

#page-proxy-favicon:not(src), .tab-icon-image:not(src) {
list-style-image: url("chrome://global/skin/icons/folder-item.png")!important;
-moz-image-region: rect(0px, 16px, 16px, 0px)!important;
}