Click to See Complete Forum and Search --> : Beginner need help
Jacaranda
10-10-2003, 09:08 AM
I am new to Webdesign and have been attempting to make my first website for 2 months. I finally have managed to have the first page done. However, I have been unsuccessful to change the page from its "construction" stage to the new homepage. How is this done? I also have no idea how to add the other pages and how to have them come up once the link bar is clicked. Completely lost...........
Thank you in advance for your help.
DaveSW
10-10-2003, 09:27 AM
Would you like to show us what you've got so far? What program you're using? stuff like that. That will then tell us if you're coding WYSIWYG (as in click button, insert picture etc) or text editing.
When you refer to links you are talking about the 'a' tag. This is coded like this:
<a href="mysecondpage.htm">This is a link to my second page</a>
When you say changing the page from its construction stage to its homepage stage I'm not sure what you mean.
You might try www.w3schools.com for some good tutorials.
Jacaranda
10-10-2003, 09:38 AM
I am using HTML Kit and i created the page with cute site builder which is a challenge as well.Should there be an easier way to create webpages, can you please tell me where I can look for this cause I have a hard time creating a Webpage. I have found the W3School and got some info from there, but I am not sure where to place everything. Changing the page from its construction stage, I ment how to make this page www.soulofsoleil.com (http://www.soulofsoleil.com/) go away so I can replace it with the new page.
Thank you for your help.
DaveSW
10-10-2003, 09:48 AM
OK let me try this question. What did you do to get the current page up there? did you use FTP? Is that space it's on with the domain name provider?
If we can sort out your upload problem then we can fix your page up after OK?
Jacaranda
10-10-2003, 10:07 AM
Yes I used ftp to get the page up there. When I first recieved the domain name the page said - future home of SoulOfSoleil-, and someone changed it for me to its current state. PC crashed and I lost the original folder. After this I was on my own and all I got told was that this is -index.html- . Soul OF Soleil is my domain's name.
DaveSW
10-10-2003, 12:29 PM
Right... so why can't you use FTP to put the new page up?:confused:
If you upload a page called index.html or index.htm to your space then that is what will open when the domain name is typed in. You will either need to replace or delete your current page that's up there.
Jacaranda
10-10-2003, 01:05 PM
Thank you.
:D
dyates
10-10-2003, 03:44 PM
Hey there,
I can appreciate your frustration. I've been there.
Have you contacted your host for help? Your file is indeed index.html.
You also have a file on your site named default.htm
Most domains are setup to read certain files in a specific succession. For instance, your domain reads index.html before default.htm. This way if one file is inaccessible the next file will be displayed.
You should ask your host for help getting started with file placement. You should also make sure your directories cannot be browsed.
As for coding, I recommend learning the basics - the "tags". This and many other sites will help you there. You can also get one of the books published by WROX. I find them useful.
Best of luck.
Daniel
Jacaranda
10-10-2003, 06:59 PM
what code do I need to get the links to work, so the pages will be displayed.I could not get any of them to work when the home page was displayed, now I am back to the construction page. :confused:
http://www.soulofsoleil.com/
Thank you in advance.
spufi
10-11-2003, 01:47 AM
Don't use Word to create your pages. You have a bunch of extra code in there that isn't needed. You have some links on your page, but you don't seem to have the pages that you are linking to on your server. I believe your Main.htm file should be named index.htm instead. You always want your home page to be the one being see first. Also name all of your html files in lower case.
DaveSW
10-11-2003, 04:55 AM
OK I've reworked your html into the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<TITLE>Soul Of Soleil</TITLE>
<STYLE TYPE="TEXT/CSS"><!--
BODY {
background-color: black;
color: white;
font-family: 'arial', sans-serif;
}
.center {
text-align: center;
}
a {
margin-left: 1em;
margin-right: 1em;
}
a:link {
color: #ff9933;
}
a:visited {
color: #ff9933;
}
a:hover {
color: #3399ff;
}
a:active {
color: #3399ff;
}
--></style>
</HEAD>
<BODY>
<div class="center">
<img src="index_files/image001.gif" width="468" height="60" alt="welcome to Soul of Soleil.com">
</div>
<div class="center">
<span>
|<A href="http://www.soulofsoleil.com/Main.htm">Home</A>
|<A href="http://www.soulofsoleil.com/Contact.htm">Contact</A>
|<A href="http://www.soulofsoleil.com/Featured%20Artists.htm">Featured Artists</A>
|<A href="http://www.soulofsoleil.com/Fashion.htm">Fashion</A>
|<A href="http://www.soulofsoleil.com/Photos.htm">Photos</A>
|<A href="http://www.soulofsoleil.com/Links.htm">Links</A>
|<A href="http://www.soulofsoleil.com/Crafts.htm">Crafts</A>
</span>
</div>
<p>Welcome to Soul OF Soleil</p>
<p>This Website is still under Construction.</p>
<p>Please direct all mail to:</p>
<p>Jacaranda </p>
<p><A href="mailto:">SoulOfSoleil@aol.com</A></p>
<p>until further notice. Thank you.</p>
<P class="center"><A href="http://www.soulofsoleil.com/">©2003SoulOfSoleil.</A></P>
</BODY>
</HTML>
I recommend you use notepad or html kit to edit your page, seeing as it is fairly simple.
I couldn't find your banner, so I don't know the filepath. Have you uploaded that to your server?
With regards to your hyperlinks, there are more in the source than display on the page, so I've displayed all of them for you. The reason most of your links didn't work was because they didn't have .htm after the filenames...
Do you want me to explain all code above?
Also, if you want to change any of the colors, you can use http://www.visibone.com/colorlab/ - just click the color you want and it will display the color code
Jacaranda
10-11-2003, 09:12 AM
Thank you so much.
I did upload the banner to the server but continue to get the famous red x. Banner is in gif.
DaveSW
10-11-2003, 11:56 AM
OK, so where did you upload to? is it in the same folder as your page? or is it in a subfolder? Also what is the filename?
Jacaranda
10-11-2003, 02:14 PM
The Banner is in a folder for images.
DaveSW
10-13-2003, 02:55 PM
What's the name of the folder?
Jacaranda
10-13-2003, 03:13 PM
images.htm
I also uplaoded it into the index.htm folder but kept on getting red X?:confused:
DaveSW
10-14-2003, 07:03 AM
Try just uploading the .jpg file (e.g. 'banner.jpg') into the same folder as your index.htm
then
<img src="banner.jpg" width="468" height="60" alt="welcome to Soul of Soleil.com">
should work
Jacaranda
10-15-2003, 01:38 PM
thank you.
DaveSW
10-15-2003, 03:36 PM
looks better...
can I just point out a mistake in my menu code? the home link
|<A href="http://www.soulofsoleil.com/Main.htm">Home</A>
should be
|<A href="http://www.soulofsoleil.com/index.htm">Home</A>
It needs changing on each page, otherwise you get a 404 error.
Thanks.
Jacaranda
10-15-2003, 03:43 PM
thank you, i was not sure what to do thats why i left it.