user379888
user379888

Reputation:

Website's logo not getting displayed

I am working on a website. I have uploaded a logo for the site. The logo displays fine when I run it on my PC, but when I upload the file online using FileZilla, the logo does not get displayed but only the alt text is displayed. I have double checked the code and I am almost sure that my code is fine. Here it is,

  <h1 id="logo"><a href="index.html" title="Stop4Gifts"><img src="uploads/logo.png" alt="Stop4Gifts"/> </a></h1>

Please help me out. Thanks

Upvotes: 0

Views: 12245

Answers (6)

Marco Gianni
Marco Gianni

Reputation: 11

I recently uploaded a website on the internet using filezila. I have uploaded a logo for the site. The logo displays fine when I run it on my PC, but when I upload the file using FileZilla, the logo does not get displayed but only the alt text is displayed. All the styling displays fine accept for the head and logo.

heres the html and css code:

<link rel="stylesheet" type="text/css" href="../css/css.css" >
<img src="../img/beFluent1.jpg" alt="beFluent1logo" />

Upvotes: -1

Sameera Thilakasiri
Sameera Thilakasiri

Reputation: 9508

Issue in your extension, need to change .png to .PNG

<h1 id="logo">
  <a href="index.html" title="Stop4Gifts">
    <img src="uploads/logo.PNG" alt="Stop4Gifts"/> 
  </a>
</h1>

Upvotes: 1

ddacot
ddacot

Reputation: 1210

i checked your site, there is no such a image [http://stop4gifts.com/uploads/logo.png] [right click on Stop4Gifts , and click view image] , may be it's .PNG?

Upvotes: 1

Ergwun
Ergwun

Reputation: 12978

A few things to check:

  • check the image file did transfer successfully to the location you are expecting it at.
  • image files should be transferred in binary mode when using ftp.
  • some operating systems use case-sensitive file names - check the case of your file name and all references to it.

Upvotes: 1

ToddBFisher
ToddBFisher

Reputation: 11590

Make sure to check case on all files and file paths. I usually make everything lowercase in this type of situation.

Upvotes: 1

Vinayak Garg
Vinayak Garg

Reputation: 6616

This means your image may not be present, or has different path/name on server. If this is not the case, do check that it is not logo.PNG and also refresh the page.

Hope this helps.

Upvotes: 3

Related Questions