PDA

View Full Version : www.ledgewoodchurch.com


chrisl
8-11-02, 02:38 PM
still no one gives me help i need help on makin my site have its real thing i got so far the homepage up and a few links of it but in those links of the page in them there is other links to more pages which dont work and ive tried a folder and putting them in there but doesnt work so can someone help me badly!

alphadesk
8-11-02, 03:16 PM
Did you read this thread?
http://forum.powweb.com/showthread.php?s=&threadid=7468

Ap0s7le
8-13-02, 12:37 PM
lets say your directory looks like this

htdocs
Folder1
page4.html
index.html
page2.html
page3.html

And in your index.html, you're trying to get to page 2...

Well your links in the page say something about C:\,
so what you'll have to do is just put 'page2.html' in your link...

Now, to put a link to Page 4 inside that folder... your link would
look like this 'Folder1/page4.html'

See? it's rather simple... if you're still having probs drop me
an email and I'll help you one on one...

later

BerksWebGuy
8-13-02, 12:51 PM
OK...

Just to start...you can put all files in your 'htdocs' folder. All your files should be in there...not sub-folders.

If you want a link: <a href="page2.html">Click</a>
If you want an image: <img src="pic.gif">

Once you have that down...you can go to sub-folders.
-Make a folder called 'images' (with all the other files in the htdocs directory).
-Put all images in that folder
-Change the image sources in your pages to look like this:
<img src="/images/pic.gif">

This is telling it to look in the 'images' folder in the htdocs directory.

Have you got this far??