Prob with frames

D

Don

Hello Group.

I am having a problem with frames using FP 2003. My index (home) page is a
simple text and banner html-type page. I want my second page (and all others
after that) in the header-links-content type frames setup. I have that part
and in FP using the design tab it looks good. All 3 sections (which are
separate pages) flow together, links work. But when I go to preview or even
use Internet Explorer I get nothing! I can pull up my separate pages (the
header, links and contents pages) using either way but they just won't fit
into my frame template. Unless again, I view it in the design or code mode.
Here's what the code looks like

Is that I have somehow frames turned off?

Thanks for any help.
D

<html>

<head>
<title>firstpage</title>

<body bgcolor="#cae1ff">

</head>

<frameset rows="197,*">
<frame name="banner" scrolling="no" target="contents" src="Bannersect.htm">
<frameset cols="138,*">
<frame name="contents" target="main" src="linksect.htm">
<frame name="main" src="new_page_4.htm" target="main">
</frameset>
<noframes>
<body marginwidth="696" marginheight="196">

<p>This page uses frames, but your browser doesn't support them.</p>

</body>
</noframes>
</frameset>

</html>
 
S

Stefan B Rusynko

Not sure if it is related but the body tag in your code is definitely wrong
- it is trying to set margins larger than the browser window

In <body marginwidth="696" marginheight="196">
Remove the: marginwidth="696" marginheight="196"

And if you have similar errors in your other pages that explains why you see nothing

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Hello Group.
|
| I am having a problem with frames using FP 2003. My index (home) page is a
| simple text and banner html-type page. I want my second page (and all others
| after that) in the header-links-content type frames setup. I have that part
| and in FP using the design tab it looks good. All 3 sections (which are
| separate pages) flow together, links work. But when I go to preview or even
| use Internet Explorer I get nothing! I can pull up my separate pages (the
| header, links and contents pages) using either way but they just won't fit
| into my frame template. Unless again, I view it in the design or code mode.
| Here's what the code looks like
|
| Is that I have somehow frames turned off?
|
| Thanks for any help.
| D
|
| <html>
|
| <head>
| <title>firstpage</title>
|
| <body bgcolor="#cae1ff">
|
| </head>
|
| <frameset rows="197,*">
| <frame name="banner" scrolling="no" target="contents" src="Bannersect.htm">
| <frameset cols="138,*">
| <frame name="contents" target="main" src="linksect.htm">
| <frame name="main" src="new_page_4.htm" target="main">
| </frameset>
| <noframes>
| <body marginwidth="696" marginheight="196">
|
| <p>This page uses frames, but your browser doesn't support them.</p>
|
| </body>
| </noframes>
| </frameset>
|
| </html>
|
|
|
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top