Forum Moderators: mack
Problem is.....When i view the site, only half the pictures pop up?
Why is this...They are in .GIF and .JPG for as instructed, yet they wont appear, ive tried everything...Still the same.
The site is <snip>
If someone could take a look!
Much appriciated!
[edited by: Woz at 9:33 pm (utc) on Dec. 9, 2003]
[edit reason] no URLs please, see TOS#13. [/edit]
Secondly, you should never build a site with Microsoft Word. That's even worse than using ForntPage. Your site is very simple. Try learning some basic html and make the page yourself using notepad.
Lastly, your problem is that it's looking for some .png images that are not in the ..._files folder.
Second thing to check, as has already been mentioned, are that your file paths are correct.
Here's my 2 cents:
FrontPage is not on topic for this thread -- in fact, the whole FrontPage "issue" has been quite over-discussed here. Anyone who learns HTML can make good use of FrontPage and stay out of trouble.
But, you've got to learn HTML first. You've just got to know something about what goes on under the hood if you want to drive safely.
Word is another story. Word was not created to be an HTML authoring tool and the HTML funtioinality that's been tacked on creates the most dreadful, bloated code you can imagine. I've seen HTML generated by Word that takes more than a minute to load LOCALLY ON A PENTIUM IV!
The red X's -- well you've got the good advice above. And don't feel bad, I usually see red X's at least once during the development of any site.
Welcome to WebmasterWorld [webmasterworld.com], mxmaster :)
It's always nice to have new members here.
Is there a way in dreamweaver to check the FileName Paths? so my pics can appear?
It all looks brilliant in Dreamweaver, even when i preview it in DW. Its just the min it gets uploaded....
BANG! Half the page is missing?
This has happened uploading to 2 different servers!
HELP HELP HELP!
In easy newby language please!
The only other thing to check is make sure in your HTML code you do not have "CAPS" for the filename or extension (unless that is the name of the image file).
I have seen problems on servers when the uploaded filename is yourimage.gif, but the HTML is looking for yourimage.GIF ;)
I'm in plain DW MX so it may be a little different:
Open your page
Choose, 'View', 'Code and Design'
Single left-click on the suspect image, then look at the path in the code panel. What does it say?
If it says something like:
<img src="file://C:\wwwroot\Inetpub...">
that's wrong & why you're seeing the images fines locally. It should read something like:
<img src="../assets/myimage.gif">
or
<img src="/assets/myimage.gif">
or
<img src="assets/myimage.gif">
or (works every time)
<img src="http://www.mydomain.com/assets/myimage.gif">