couldn't set image using dreamweaver

veragi

New member
Joined
May 13, 2007
Messages
1
hi,

I created website on dreamWeaver. I set my image to to : /domains/mysite.com/public_html/Creek.jpg on dreamweaver,but website doesn't display on creek.jpg !!!. I am using ms internet explorer. see what i did:

1) upload index.html and creek.jpg to public_html directory. then i visit on my website. all my written text display but not image. when i use firefox, it gives me "the file is not on the server", when i use ms internet explorer it shows me X sign. I set my image tag location to <img src="/domains/mysite.com/public_html/Creek.jpg" on dreamweaver.

please help me out

thanks
veragi
 
Last edited:
These forums aren't about website programming.

But if the image is in the same directory then use:

Code:
<img src="/creek.jpg" />

Grant
 
I set my image to to : /domains/mysite.com/public_html/Creek.jpg

The image source is supposed to be a url or partial url. /domains/mysite.com/public_html is not at all part of the url to get to your site. It is the path on the server but has nothing to do with the url to your site.

This is very basic html coding. You need to learn some basic html before you start using Dreamweaver.
 
Back
Top