网站徽标未显示

发布于 2024-12-28 07:46:23 字数 357 浏览 2 评论 0原文

我正在开发一个网站。我已经上传了该网站的徽标。当我在 PC 上运行时,徽标显示正常,但当我使用 FileZilla 在线上传文件时,徽标不会显示,仅显示替代文本。我已经仔细检查了代码,我几乎确定我的代码没有问题。就在这里,

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

请帮帮我。谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

倾城泪 2025-01-04 07:46:23

这意味着您的图像可能不存在,或者在服务器上具有不同的路径/名称。如果不是这种情况,请检查它是否不是 logo.PNG 并刷新页面。

希望这有帮助。

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.

一袭白衣梦中忆 2025-01-04 07:46:23

确保检查所有文件和文件路径的大小写。在这种情况下,我通常将所有内容都小写。

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

迟到的我 2025-01-04 07:46:23

需要检查的几件事:

  • 检查图像文件是否已成功传输到您期望的位置。
  • 使用 ftp 时应以二进制方式传输图像文件。
  • 某些操作系统使用区分大小写的文件名 - 检查文件名及其所有引用的大小写。

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.
挥剑断情 2025-01-04 07:46:23

我检查了您的网站,没有这样的图像 [http://stop4gifts.c​​om/uploads/logo.png] [右键单击 Stop4Gifts ,然后单击查看图像],可能是 .PNG?

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?

兲鉂ぱ嘚淚 2025-01-04 07:46:23

您的扩展程序出现问题,需要将 .png 更改为 .PNG

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

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>
合约呢 2025-01-04 07:46:23

我最近使用 filezila 在互联网上上传了一个网站。我已经上传了该网站的徽标。当我在 PC 上运行时,徽标显示正常,但当我使用 FileZilla 上传文件时,徽标不会显示,只显示替代文本。所有的造型都很好地接受了头部和标志。

这是html和css代码:

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

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" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文