February 7th, 2010
How do images inserted into Dreamweaver workspace appear in web browsers?
I am perplexing to insert a jpeg picture in to Dreamweaver CS3. we simply clicked insert picture in a toolbar to fix up a picture as well as forsaken it in to my workspace. The picture right away appears upon my workspace, however it does not crop up when we try to preview a picture in a browser. Does any one know because this might be function as well as how to safeguard my images crop up upon a browsers? I’ve extrinsic images prior to as well as they appeared in my browser so not certain what is starting upon now.
Tags: Images, Jpeg Image, Web Browsers, Workspace
Filed under: Website templates dreamweaver

click on the image and then go down the bottom of dreamweaver in the properties bar and where it has link change:
C:/ *******/*****/******/*****/****/image.jpg
to:
image.jpg
or if the image is in a folder:
(foldername)/image.jpg
It will be something to do with the path. Let me give you an exmaple.
Say you html file is located like the following on your computer:
C:\websites\band\index.html
i would recommend stroring your image in an “images” folder within your band folder:
C:\websites\band\images\
so the link in your html should be like so:
basically the src should be relative to your html file.
Hope you get it