Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Image not Appearing in Dreamweaver CS5?

I am using Dreamweaver CS5 to create a website for my Multimedia Web Design Class. I am pretty positive that I have coded it right " <img src="T:\Cody Dudash\Pictures\dreamweaver.png" />" , but when I load the page using the design view or F12, I little icon that has a torn piece of paper appears where my image should be. What is the problem and how can I fix it?

2 Answers

Relevance
  • Aaron
    Lv 4
    8 years ago
    Favorite Answer

    The image src is using an absolute path to the T drive. There's probably a permission error when trying to access that drive from a browser, (guessing on the error here) if you could review the web server log file you would be able to see the exact error as to why it can't display the image.

    A better practice is to save the image in the same folder as the webpage, then use a relative path instead. <img src="dreamweaver.png" /> OR you can create a sub folder in the folder where this page exists and again use a relative link to the image <img src="images/dreamweaver.png" />

    -HTH

  • ?
    Lv 4
    5 years ago

    consider above. border = '0' ought to do it for you in any image format.. until the border is actual component to the image... then you gotta open up an editor and do away with it.

Still have questions? Get your answers by asking now.