Thread: Frames in IE 6 & 7
Results 1 to 15 of 25
Related
-
frames vs. css Forum: CSS Forum
Replies: 3 -
frames Forum: HTML Forum
Replies: 3 -
frames Forum: HTML Forum
Replies: 11 -
frames HELP-please? Forum: HTML Forum
Replies: 5 -
Frames Forum: HTML Forum
Replies: 2
-
01-31-2009, 06:08 AM #1
Frames in IE 6 & 7
Are frames allowed in IE 6 and 7. I am almost sure that it´s disallowed in IE 6, i have tested it, but I can´t download IE 7. This my code:
HTML Code:<frameset cols="225,*"> <frame src="../menuframe.html"> <frame src="../start.html" name="showframe"> </frameset>
-
02-01-2009, 02:54 AM #2
Re: Frames in IE 6 & 7
Ensure you are calling the correct file.
Frames are supported on both IE6 and 7, but you should be aware that frames are evil.
More info on frames:
http://www.w3schools.com/HTML/html_frames.asp
Hope that helps.Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
02-01-2009, 04:08 AM #3
Re: Frames in IE 6 & 7
Im sure it´s the right files, it works in Chrome.
-
02-01-2009, 04:17 AM #4
Re: Frames in IE 6 & 7
Could you please provide a link to your page.
Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
02-01-2009, 05:17 AM #5
Re: Frames in IE 6 & 7
It is not hosted yet, and it´s a pretty big site..
Here is the code (The content is in danish!):
navframetest.html:HTML Code:<html> <head><title>Vellerup</title></head> <body> <frameset cols="225,*"> <frame src="../menuframe.html"> <frame src="../forside31415926535.html" name="showframe"> </frameset> </body> </html>
HTML Code:<html> <head></head> <body> <tr width=230> <td> <!--//Menubar Begynder//--!> <img src="Logo.gif"><br><br></td><td width=100%> </td></tr></td></tr></tr><td align=up> <a href="forside31415926535.html" target="showframe"><button style="width:175px">Velkommen</button></a> <br><br> <a href="historie.html" target="showframe"><button style="width:175px">Historie</button></a><br> <br> <a href="galleri.html" target="showframe"><button style="width:175px">Billedgalleri</button></a> <br><br> <a href="reservering.html" target="showframe"><button style="width:175px">Reservering</button></a> <br><br> <a href="referater.html" target="showframe"><button style="width:175px">Møder og referater</button></a> <br><br> <a href="arbejdsliste.html" target="showframe"><button style="width:175px">Arbejdsliste</button></a><br><br> <a href="nyheder.html" target="showframe"><button style="width:175px">Nyheder</button></a> <br><br> <a href="emails.html" target="showframe"><button style="width:175px">Email-liste</button></a> </td><td height=0 rowspan=2> <!--//Menubar ender//--!> </body> </html>
HTML Code:<html> <head><title>Vellerup</title></head> <body> <table border=0> <tr width=230> <td> <!--//Menubar Begynder//--!> <td width=100%><h1 style="font-size:600%" align="center">Vellerup</h1> </td></tr></td></tr></tr><td> </td><td height=400 rowspan=2> <!--//Menubar ender//--!><table border=0 align="center"><tr><td><h1 align="center">Kære besøgende</h1><br><br><center>Hvis det er første gang du besøger vellerups hjemmeside, så vær<br>venlig at tilføje din email-adresse, din adresse og telefonnummer <a href="tilmeldform.html">her</a>.</center></td></tr></table> <!--//Site begynder//--!> </td></tr><tr height=><td height=70></td></tr> </table> <!--//Site ender//--!> </body> </html>
-
02-01-2009, 09:26 AM #6
Re: Frames in IE 6 & 7
How are your files laid (directory) ?
If you can minimize the code that reproduces the issue and attach it in a zip file, then we might figure this out for you.Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
02-01-2009, 11:24 AM #7
Re: Frames in IE 6 & 7
Sorry, my host doesn´t have to much space, but can I send the zip by email? What´s your adress?
-
02-01-2009, 08:52 PM #8
Re: Frames in IE 6 & 7
Just attach the file here. The board can accept zip attachment.
Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
02-02-2009, 09:45 AM #9
Re: Frames in IE 6 & 7
Originally Posted by adamsen
-
02-02-2009, 10:50 AM #10
Re: Frames in IE 6 & 7
Sorry jthayne, the directory looks like this:
--website //Folder
--menuframe.html
--forside314926535.html //To show in showframe
----tests //Folder
----navframetest.html
-
02-02-2009, 10:51 AM #11
Re: Frames in IE 6 & 7
How can I attatch the file here? I´m new.
-
02-02-2009, 12:52 PM #12
Re: Frames in IE 6 & 7
You will have to click "post reply" you cannot do it from the quickreply below the thread.
Once you have clicked "post reply" scroll down and you will see the blue "manage attachements" button.
-
02-02-2009, 01:24 PM #13
Re: Frames in IE 6 & 7
Here is the files
-
02-02-2009, 09:09 PM #14
Re: Frames in IE 6 & 7
Remove the body tags:
Code:<html> <head><title>Vellerup</title></head> <body> <frameset cols="225,*"> <frame src="../menuframe.html"> <frame src="../forside31415926535.html" name="showframe"> </frameset> </body> </html>
Hope that helps.Checkout my porfolio.
Please click thebutton when a member helped you.
Take time to use Forum's Search function.
-
02-03-2009, 10:50 AM #15
Re: Frames in IE 6 & 7
Thanks, i will remember that