Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Mozilla サポートの検索

サポート詐欺に注意してください。 私たちはあなたに通話やショートメッセージの送信、個人情報の共有を求めることはありません。疑わしい行為を見つけたら「迷惑行為を報告」からご報告ください。

詳しく学ぶ
このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。
Solved アーカイブに保管済み

Thumbnails are not displayed correctly in Firefox, but displayed correctly in Safari and G. Chrome

cor-el replied
AnnetteBo

Firefox display problems regarding this customers site: http://gardenia.dk/collections/collection/

Thumbnails are not displayed correctly in Firefox - only a tiny bit of the picture is visible, incorrect scale (displayed correctly in Safari and Google Chrome).

Can I do anything to make it work in Firefox, too?

Kind regards, Annette

Firefox display problems regarding this customers site: http://gardenia.dk/collections/collection/ Thumbnails are not displayed correctly in Firefox - only a tiny bit of the picture is visible, incorrect scale (displayed correctly in Safari and Google Chrome). Can I do anything to make it work in Firefox, too? Kind regards, Annette
この回答をすべて読む

選ばれた解決策

You do not see the thumbnail, but the large image because the width of the thumbnail image is set to 500.

Add code to the userContent.css file.

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

@-moz-document domain(gardenia.dk){
 a.thickbox > img { width: 120px !important; }
}

すべての返信 (3)

この投稿は Riya により に変更されました

Looks the same in IE8 as it does in Firefox 27. IMO, the website is broken.

選ばれた解決策

You do not see the thumbnail, but the large image because the width of the thumbnail image is set to 500.

Add code to the userContent.css file.

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

@-moz-document domain(gardenia.dk){
 a.thickbox > img { width: 120px !important; }
}