Dreamweaver 8 and Tracing Image

Associate
Joined
13 Aug 2005
Posts
168
just started messing about with my isp webspace

created a crappy index page and put a tracing image in it, it looks ok in dreamweaver but when ever i try to preview it in a broswer the image isnt there, uploaded it to see if it worked online but its not there but the text is, what am i doing wrong? :confused:
 
Sounds like the src attribute of your <img> tag is pointing to the file on your local computer rather than the image on the webserver.

If the image is in the same directory as the index file, for example:
Code:
<img src="tracingimage.jpg" alt="..." />
 
Augmented said:
Sounds like the src attribute of your <img> tag is pointing to the file on your local computer rather than the image on the webserver.

If the image is in the same directory as the index file, for example:
Code:
<img src="tracingimage.jpg" alt="..." />

checked the code and found this

"<body tracingsrc="bg.jpg" tracingopacity="26">"

bg.jpg if the trace and the transparacy is 26 so its there just not showing it in the broswers :confused:
 
Back
Top Bottom