Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 3 replies
  • 1 has this problem
  • 22 views
  • Last reply by cor-el

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

Chosen solution

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; }
}
Read this answer in context 👍 1

All Replies (3)

Modified by Riya

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

Chosen Solution

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; }
}