Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
This line in the <body> tag:
HTML Code:
background="file:///C:/Documents%20and%20Settings/Anne/My%20Documents/My%20Webs/floralpattern.jpg"
doesn't work, because that is relative to the file system on your computer, not the file system on your webserver.
On a website, you need either an absolute path (ie http://mywebsite.com/images/image.jpg) or a relative path (/images/image.jpg). If you put a slash at the beginning of the path, it will start looking from the root directory of your site, if not, it will start from the directory the current document is in.
I highly recommend you not use FrontPage to generate sites: it is generally a very bad application, and has been discontinued by Microsoft.
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
Last edited by wayfarer07; 10-27-2008 at 11:18 AM..
|