My Firefox 3.0.4 does not display non-existing images at all, or it displays the image alt as plain text (if available).
This way I would have no idea that there is supposed to be an image there.

Does anyone know if there is a way to make it work like IE/Opera? (ie. display a box even if the image file doesn't exists) - plugin or anything?

Thanks in advance!

link|improve this question

feedback

8 Answers

up vote 0 down vote accepted

My extension, FeatureFix, now contains a comprehensive section in its configuration GUI ("advanced/developer tweaks") to configure broken/loading image placeholders.

link|improve this answer
feedback

You could get the Firebug Plugin. It won't change how the images show up, but it does have a network tab that you can click to see which resources were gotten by firefox (and how fast). As well, it will tell you what images, js files and css files it was not able to get. It's incredibly handy for web development.

It also has a ton of other great features like JS debugging, and so much more.

link|improve this answer
In Firefox 4 or later, you can activate the built-in developer console (Ctrl+Shift+K), and see the missing requests. Still, this is nowhere near as usable as simply displaying a broken image placeholder.. – Dan Dascalescu Jul 19 '11 at 9:05
feedback

There's an experimental Force Image Placeholders plugin which attempts to do what you request. I haven't used it, but it's worth a try.

link|improve this answer
Unfortunately this link now goes to a page with the message: This add-on has been disabled by an administrator. – Philip Jones Jul 8 '11 at 13:11
1  
My extension, FeatureFix, now contains a comprehensive section in its configuration GUI ("advanced/developer tweaks") to configure broken/loading image placeholders. – Jez Oct 22 '11 at 10:58
feedback

Here's another addon-based workaround.

  • Get the Stylish addon for Firefox, allowing you to apply your own styling information.
  • Add a background to all <img> tags. If the image loads, you won't see it.

But be warned that, if any images rely on transparency, the new default background will show through.

link|improve this answer
Merged information from this user's second answer to this question. – Brock Adams Mar 3 '11 at 1:34
feedback

There is a setting in about:config that is supposed to do just this: browser.display.show_image_placeholders. However, it doesn't do anything on its own.

You need to add a rule to userContent.css like this:

/*
 * Show image placeholders
 */
@-moz-document url-prefix(http), url-prefix(https), url-prefix(file) {
  img:-moz-broken {
    -moz-force-broken-image-icon: 1;
    width: 24px;
    height: 24px;
  }
}
link|improve this answer
feedback

As far as i know there is no plugin, Images should have a width and height specified like so:

<img src='...' width='100' height='100' alt='...'></img>
or
<img src='...' alt='...' style='width:100px; height:100px;'></img>

Then firefox will reserve the appropiate space for the images.

link|improve this answer
The OP is looking for a way to display a placeholder for broken images, as IE does (a blank image with a red 'X'). – Dan Dascalescu Jul 19 '11 at 9:06
feedback

Along the lines of Pim Jager's suggestion, but it seems as though you'll need to force the image to display with something like "display: block;". This has the advantage of allowing you to specify additional styles via CSS that will show if the image doesn't - e.g. a background-color, or even a background-image. YMMV.

link|improve this answer
feedback

Upon further reflection, there is a problem with setting the background color/image. The background will show through any transparency in the images.

link|improve this answer
This answer should be deleted and rolled into your earlier answer. – Brock Adams Mar 3 '11 at 1:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.