How can I get my FRAMESET page, which loads blank frames in Firefox 22.0 but works in IE7, to work in Firefox?
This is my current page, which works in IE 7:
< HTML>< HEAD>< TITLE>My Calendar of Events< /TITLE>
< base href="C:\Calendar\2013\"></HEAD >
< FRAMESET BORDER=5 ROWS="60, *" >
< FRAME NAME="navigate" SRC="navigate.html" SCROLLING="NO" MARGINWIDTH=0 MARGINHEIGHT=0 NORESIZE >
< FRAME NAME="content" SRC="load.html" SCROLLING="AUTO" MARGINWIDTH=5 MARGINHEIGHT=0>
< /FRAMESET >< /HTML>
I later added the followinging lines, the 2nd in the <head> section (to no avail):
< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
< meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
The frames seem to load in Firefox 22.0, as I can see the border, but no content is displayed. I CAN get the content to display in Firefox if I open the frames manually, either by typing in the addresses or dropping the pages into a window so it 'must' be the FRAMESET page. Any help will be greatly appreciated.
Modified
All Replies (1)
EDIT:
I forgot to "break" the html code, so it didn't show in the question. Found the Edit option, repaired questin.
Modified