Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying Frames

Status
Not open for further replies.

GSXR179

Programmer
Oct 11, 2001
34
US
I know the issue of not displaying frames has been beat to death in here but I cannot seem to get rid of them. I think I think I have tried everything to display the page without the frames showing.

Maybe there is something in my supporting pages. I have a background image set in each of my three pages.

<frameset rows=&quot;73,*&quot; frameborder=&quot;0&quot;>
<frameset cols=&quot;100%,*&quot; frameborder=&quot;0&quot;>
<frame name=&quot;logo&quot; src=&quot;site/header3.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; noresize>

</frameset>
<frameset cols=&quot;110,*&quot; frameborder=&quot;0&quot;>
<frame src=&quot;site/leftback.cfm&quot; name=&quot;menu&quot; id=&quot;menu&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>

<frameset cols=&quot;100%,*&quot; frameborder=&quot;0&quot;>

<frameset rows=&quot;100%,*&quot; frameborder=&quot;0&quot;>
<frame src=&quot;site/intro.cfm&quot; name=&quot;main&quot; id=&quot;main&quot; frameborder=&quot;0&quot; scrolling=&quot;No&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>

</frameset>

</frameset>
</frameset>

Thanks in advance
Mike
 
have you removed the <body> tags of your main template? Sylvano
dsylvano@hotmail.com

&quot;every and each day when I learn something new is a small victory...&quot;
 
Yes, I only have html and head tags on the frames page.

It's not that the page will not display. The problem is that I get two frame borders showing where the pages meet.
 
i tested the code you have posted here; it is displayed nicely and without errors (without those two frame borders where the pages are met); the error might be somewhere else... Sylvano
dsylvano@hotmail.com

&quot;every and each day when I learn something new is a small victory...&quot;
 
Thank you. I'll check my other pages and see if I can find anything wrong
 
I created a new simple frames page and used another blank page with on a backgroung color specified and still the frames remain.

Any other Ideas
 
I think you closed a <frameset> with a </frame> or something because it's not matching up. Try this:
Code:
<frameset rows=&quot;73,*&quot; framespacing=&quot;0&quot; frameborder=&quot;0&quot;>
    <frame src=&quot;site/header3.cfm&quot; name=&quot;logo&quot; frameborder=&quot;0&quot; scrolling=&quot;No&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot; framespacing=&quot;0&quot;>
    <frameset  cols=&quot;110,*&quot; framespacing=&quot;0&quot; frameborder=&quot;0&quot;>
        <frame src=&quot;site/leftback.cfm&quot; name=&quot;menu&quot; frameborder=&quot;0&quot; scrolling=&quot;No&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot; framespacing=&quot;0&quot;>
        <frame src=&quot;site/intro.cfm&quot; name=&quot;main&quot; frameborder=&quot;0&quot; scrolling=&quot;Auto&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot; framespacing=&quot;0&quot;>
    </frameset>
</frameset>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top