Mulitple web pages

Status
Not open for further replies.

scudder5000

New Member
Messages
3
Reaction score
0
Points
0
I want to know why my page comes out as not working. I have it working when not in the public_html folder. What I am trying to do is I have a Nav_Master (The page being opended Saved as index.html) Then in that page there is a row at the top and then two columns 20% and 80%. The 20% is my Nav_bar and the other one is what I want To be displayed. What should be displayed is a web page document.


HTML:
<html>

<head>
<title>Scott Mullen</title>
</head>

<frameset rows="15%,85%">

    <frame src=scott_masthead.htm scrolling=no noresize>

    <frameset cols="20%,80%">
        <frame src=scott_nav_bar.htm noresize>
        <frame src=scott.htm name="master" noresize>
    </frameset>

</frameset>

</html>
 

scudder5000

New Member
Messages
3
Reaction score
0
Points
0
Yes I did. I took the web sit eI made for school and resaved the NAV_NASTER as index.html. when I did this It showed the three frames like I wanted but it did not show my nav bar . http://www.ngl.elementfx.com/ Now I went and made the page display nothing and it didn't work.

Edit: I got the page to display nothing
Edit:
I guess what I want to know is why When I open index.html from my documents it displays correctly but when i copy and paste it into the public_html folder it does not display? And its not like it is consistent errors. Sometimes I get nothing displayed sometimes i get frames with x10hostig 404 error displayed.
 
Last edited:

Fedlerner

Former Adm & Team Manager
Community Support
Messages
12,934
Reaction score
6
Points
38
Can you give us a link to the page that is bringing you problems?
I noticed that in the HTML code you pasted, you use for example the file: scott_masthead.htm, while the one that you've uploaded in your public_html is: SCOTT_MASTHEAD.HTM
Files are case-sensitive, so they need to be the same.
 
Status
Not open for further replies.
Top