Reputation:
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
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
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
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
Reputation: 12978
A few things to check:
Upvotes: 1
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
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