raghuveer999
raghuveer999

Reputation: 709

Images are not loaded in my HTML site

Can anyone help me? Here is my path to my website.

http://startadvertising.co.in/golfedge/

All the images are in same 'img' folder. But I wonder why some images are loaded while some are not.

Is it any kind of HTACCESS problem? I am really poor in htaccess problems.

I searched for solution but could not find any. I changed folder permissions, file permissions but nothing helped.

Please help me.

Upvotes: 0

Views: 41

Answers (2)

Ravi Sukhadia
Ravi Sukhadia

Reputation: 441

IT's a problem with your extension .png replace that in .PNG in those image which can not show and if you use the .htaccess then change the url

Upvotes: 1

Markus Schott
Markus Schott

Reputation: 113

Change the filetype of your images correctly. Some of them are uppercase.

Example

Change "logo.PNG" to "logo.png"

In your HTML you defined the filetypes lowercase:

<img id="site-logo" src="img/logo.png">

Upvotes: 2

Related Questions