Forums

my image appears as a question mark

I have a number of images in my html file. One of them does not display properly and appears as a question mark. Do you have any idea why that is so?

<a href="#" title="Click here to view / hide more information"><img src="{% static "info_am1.PNG" %}" alt="Info"/></a>
<a href="#" title="test"><img src="{% static "info_final.png" %}" alt="Info2"/></a>

The first image displays properly but the second doesn't.

Thanks!

Have you checked it loads properly by entering the correct static address in a web browser?

And once you've done that, have you looked at the page source to see if it's giving the correct address?

Thanks, Robert

+1 to what Robert says. One thing I notice from looking at the code you posted is that you're using a capital ".PNG" in one image reference and a lower-case ".png" in the other, so perhaps that is the cause?