HTML Help Forum HTML Help
Please Search for the answer to your question before asking it! Thanks.
 

IE frames not displaying
Post a Reply to this Topic Ask a New Question
Click here to go to the original topic
       HTML Help Forum -> HTML Frame
View previous topic :: View next topic  
Author Message
jdoe1001



Joined: 09 Mar 2009
Posts: 1

Posted: Mon Mar 09, 2009 7:28 pm     IE frames not displaying  

My website hockeyquest.ca is only displaying the top Menu frame in Internet explorer, and not the main and bottom frame. Yet it works fine in firefox? What am I doing wrong?
PayneLess Designs



Joined: 28 Feb 2007
Posts: 4287
Location: MS

Posted: Mon Mar 09, 2009 10:16 pm      

No one can help you without a link to problem page. Guess I overlooked the link with it given as is. :P


Corey Bryant



Joined: 15 May 2004
Posts: 8748
Location: Castle Pines North, CO USA

Posted: Tue Mar 10, 2009 4:17 am      

Try something more like
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<html>

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Untitled 5</title>
</head>

<frameset rows="64,25%,*">
   <frame name="top" noresize="noresize" scrolling="no" target="middle">
   <frame name="middle" target="bottom">
   <frame name="bottom">
   <noframes>
   <body>

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

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

</html>
You can change the height / sources as needed.

Also, consider using server side includes instead of frames.

_________________
Corey
Virtual Office Solutions | Processing Credit Cards | Microsoft Expression Web Blog
 
 
DARFUR
HOSTING / DESIGN
MAKE MONEY

       HTML Help Forum -> HTML Frame
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group