
Thumbnails are not displayed correctly in Firefox, but displayed correctly in Safari and G. Chrome
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)
This article might help you-
https://support.mozilla.org/en-US/kb/websites-look-wrong-or-appear-differently
Modified
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; } }