PDA

View Full Version : newbie


dizzy2day
06-10-2008, 04:41 PM
i have been trying to upload my webpage through bluehost when i type in my url the page looks nothing like the one i uploaded it's missing all the pictures and colors help me i am so frustrated

Early Out
06-10-2008, 04:44 PM
A link to your site would be a big help. Without that, we're just shooting in the dark.

dizzy2day
06-10-2008, 04:57 PM
A link to your site would be a big help. Without that, we're just shooting in the dark.
www.goallthewaygreen.com

Early Out
06-10-2008, 05:01 PM
Well, there's certainly no mystery there. The page is looking for its images in a subdirectory called images, but that subdirectory is empty - there are no image files in it. Additionally, it's looking for a styles.css file, which is also simply not there.

dizzy2day
06-10-2008, 05:05 PM
Well, there's certainly no mystery there. The page is looking for its images in a subdirectory called images, but that subdirectory is empty - there are no image files in it. Additionally, it's looking for a styles.css file, which is also simply not there.
wow!!! i am clueless to what you just typed. When I created this page i filed it under index then uploaded it using ftp are you saying that i need to upload the images file along with ???? please walk me through this

Early Out
06-10-2008, 05:12 PM
Well, here's a piece of the code you created:

<IMG height=7 src="images/bgleft.gif" width=17>
That tells the page to go to the images subdirectory (immediately below the location of this page itself, which is in public_html), and fetch a file called bgleft.gif. That file isn't there, so how can the page be expected to display the file?

You also have a call to a style sheet:

<link href="style.css" rel="stylesheet" type="text/css">
That tells the page, "here's where the style sheet for this page is - it's at the same level as this page, and it's called style.css." But that file isn't there.

There's no magic, here. When a page says, "here's where such-and-such a file is," that file has to be there, or it's not going to be found.

Eriksrocks
06-10-2008, 05:24 PM
So, to sum up what Early Out said, you need to upload your images folder and style.css to your public_html folder. ;)

dizzy2day
06-10-2008, 05:24 PM
Well, here's a piece of the code you created:

<IMG height=7 src="images/bgleft.gif" width=17>
That tells the page to go to the images subdirectory (immediately below the location of this page itself, which is in public_html), and fetch a file called bgleft.gif. That file isn't there, so how can the page be expected to display the file?

You also have a call to a style sheet:

<link href="style.css" rel="stylesheet" type="text/css">
That tells the page, "here's where the style sheet for this page is - it's at the same level as this page, and it's called style.css." But that file isn't there.

There's no magic, here. When a page says, "here's where such-and-such a file is," that file has to be there, or it's not going to be found.
so how do i fix this where do i start what do i put in the files i am creating

Early Out
06-10-2008, 05:29 PM
Did you write this page code? If not, where did it come from? You've told the page to use a file called bgleft.gif. Why did you do that? Do you have that file?

I think you need to start with some basic HTML instruction, which is beyond what anyone can do on a help forum. Google for HTML tutorial, and start doing some reading!

Eriksrocks
06-10-2008, 05:31 PM
http://w3schools.com/html/default.asp

dizzy2day
06-10-2008, 05:54 PM
Did you write this page code? If not, where did it come from? You've told the page to use a file called bgleft.gif. Why did you do that? Do you have that file?

I think you need to start with some basic HTML instruction, which is beyond what anyone can do on a help forum. Google for HTML tutorial, and start doing some reading!
i got this template from a company who told me to use blue host to publish my web page and get a domain name so that is what i did i just now uploaded the style and image files folders and still do not have it in my files i have the orginal under index, images and style all of it has my stuff on it but somehow i cant seem to get any further than that

Eriksrocks
06-10-2008, 06:42 PM
i got this template from a company who told me to use blue host to publish my web page and get a domain name so that is what i did i just now uploaded the style and image files folders and still do not have it in my files i have the orginal under index, images and style all of it has my stuff on it but somehow i cant seem to get any further than that
style.css is in the right place now so the CSS styling is correct. However, none of the images exist on the server. You need to upload the image folder and actually make sure it has all of the correct images in it. :)