Thread: IE7 and Frames
Results 1 to 9 of 9
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
-
04-12-2007, 07:08 AM #1
IE7 and Frames
I have built a simple HTML-only framed site that works on all other browsers tested - but not IE7.
The frame is set to have the side navigation point to the main frame with <FRAME NAME=MAIN SRC="home.html"> and each other page has <BASE TARGET="MAIN"> so that links will appear in that same frame. Instead all links appear in the first mentioned left nav.
All other browsers include IE5.2, Safari, and Firefox....
Any hints? This is driving me insane.
-
04-12-2007, 08:22 AM #2
Re: IE7 and Frames
Can you post the code?
(Don't forget [code] tags ...)
-
04-12-2007, 08:32 AM #3
Re: IE7 and Frames
In the index html:
HTML Code:<FRAMESET COLS="137,2,*" framespacing=0 frameborder=0 border=0 border=off frameborder=off> <FRAME NAME=NAV SRC="nav.html" SCROLLING=NO MARGINHEIGHT=0> <FRAME NAME=SPACER SRC="spacer.html" SCROLLING=NO MARGINHEIGHT=0> <FRAME NAME=MAIN SRC="home.html" SCROLLING=AUTO MARGINHEIGHT=0> </FRAMESET>
All other pages have the <BASE TARGET="MAIN"> in each HTML.
I tried to post the direct link but this site won't let me before 5 posts.
Does this help at all?Last edited by DeadMeatGF; 04-12-2007 at 10:16 AM. Reason: Aaaargh! You DID forget the code tags :(
-
04-12-2007, 08:45 AM #4
Re: IE7 and Frames
You may post the url just do not link it, or just leave off the http://www.
-
04-12-2007, 08:51 AM #5
Re: IE7 and Frames
thanks.....
lloydwise.com
2 of the 3 frames that are giving me problems are:
nav.html
home.html
-
04-12-2007, 09:16 AM #6
Re: IE7 and Frames
Try putting the base tag within the head tags and not after.
Dave
-
04-12-2007, 09:22 AM #7
Re: IE7 and Frames
Will do.... many thanks for the suggestion!
Writing from Singapore. Will try this in the am and let you know.
Thanks!
-
04-12-2007, 09:37 AM #8
Re: IE7 and Frames
Hi Dave,
I decided to try this before heading off finally....
that simple change works!
I only changed the base target placement in the <nav.html> page -- would you suggest I change in each and every page? I only ask because I have hundred's of pages.
Regardless.... thank you!!!
-
04-12-2007, 10:09 AM #9
Re: IE7 and Frames
Remember all the other pages still have the code improperly placed between the head and body.
D