 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
n3m
Joined: 19 Nov 2009 Posts: 1
|
Posted: Thu Nov 19, 2009 10:52 am HTML frame problem in IE |
|
|
|
HI everyone, im pretty new to web stuff(been programming maths too long!!!!) i have a web site and i have a frameset whereby i have a header, footer, menu, and display framesets. (see code below). I have set the nav section and the display section to display it as 20% visibility for the nav part and 80% for the display part. Now this works fine wioth Firefox but with IE it displays the nav and display sections in the about way round. I have shown the code below, Can anyone tell me what i hjave done wrong please. Cheers
!doctype html public "-//W3C//DTD HTML 3.2 Final//EN">
<html><head>
<title>Project</title>
<META name="keywords" content="HTML, ">
<META name="description" content=".">
</head>
<FRAMESET ROWS="10%,80%,10%" frameborder="no" bordercolor="#669933">
<FRAME NAME="top" SRC="proj_nav.html" scrolling="no">
<FRAMESET COLS="20%,80%">
<FRAME NAME="menu" SRC="proj_menu.html">
<FRAME NAME="display" SRC="proj_intro.html">
</FRAMESET>
<FRAME SRC="proj_footer.html" NAME="bottom" frameborder="yes" scrolling="no">
</FRAMESET>
<NOFRAMES>
<h2 align=center>NOTE: This site uses frames, but apparently your
browser does not support this feature. Try the
<a href="proj-noframes.html">alternative</a> page.</h2>
</NOFRAMES>
</html> |
|
sticks464

Joined: 31 Dec 2006 Posts: 2625
|
Posted: Thu Nov 19, 2009 2:32 pm |
|
|
|
Give this a try using the '*' wildcard character
| Code: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html><head>
<title>Project</title>
<META name="keywords" content="HTML, ">
<META name="description" content=".">
</head>
<FRAMESET ROWS="10%,80%,*" frameborder="no" bordercolor="#669933">
<FRAME NAME="top" SRC="proj_nav.html" scrolling="no">
<FRAMESET COLS="20%,*">
<FRAME NAME="menu" SRC="proj_menu.html">
<FRAME NAME="display" SRC="proj_intro.html">
</FRAMESET>
<FRAME SRC="proj_footer.html" NAME="bottom" frameborder="yes" scrolling="no">
</FRAMESET>
<NOFRAMES>
<h2 align=center>NOTE: This site uses frames, but apparently your
browser does not support this feature. Try the
<a href="proj-noframes.html">alternative</a> page.</h2>
</NOFRAMES>
</html> |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|