Images on website not working

Asked By 0 points N/A Posted on -
qa-featured

Hi all, I am using FP 03 to edit an older website which has been fine for a long time. I tried to insert facebook. The icon is in the correct folder with all the correct HTML code and correct file paths but it still comes up as a little red X in a white box. When in preview mode it shows just as it is supposed to. I have uploaded the files to the server and the link is still active, it just doesn´t show the icon. I need this to work as I have to put it on several other pages, please help me! Thanks

SHARE
Answered By 0 points N/A #138716

Images on website not working

qa-featured

You can use DreamweaverCS4/ CS5 for editing that site or creating this link page. Please observe your all code. Image name and image format is very essential for it. Again make sure that your all data is in the targeted / root folder. check that the  image is in the good condition. Only in HTML coding when you insert an Image it will shows. Make sure which type of editor you are using and it was installed correctly. Check the image link with the best concentration. Sometimes some new elements of HTML does support all HTML editor. You can use DreamweaverCS4/CS5 to solve this problem if you know it well. I am sure that  your problem will solved at a time.

Answered By 590495 points N/A #313461

Images on website not working

qa-featured

If you are referring to the favicon in HTML, inserting the icon in the document is a little different than with a normal image. Actually, the tags used are different:

  • For a normal image – <img src=”URL” alt=”TEXT” width=”SIZE IN PX” height=”SIZE IN PX”>
  • For the favicon or icon – <link rel=”icon” href=”URL” type=”image/x-icon”>

Just replace without quotes “URL” with the URL or link of the image and “SIZE IN PX” with the correct value of the size of the image. In HTML, to display or insert a normal image, the <img> tag is used. The link or URL of the image to be inserted is indicated by the “src” attribute.

While with an icon or favicon, the <link> tag is used instead of the <img> tag and the link or URL of the image is indicated by the “href” attribute. Also, the format of the file used by an icon or favicon is different than with a normal image.

With an icon, the format of the file has to be ICO (*.ico) while with a normal image, it can be JPG (*.jpg), PNG (*.png), or GIF (*.gif). An icon won’t display in these file formats, it has to be ICO.

Related Questions