OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Frame Trouble



Trying to create a resizeable left frame, in XHTML.
 
Heres the code:
 
<?php echo"<?xml version=\"1.0\"?>"?>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta name="description" content="Downloads, Tutorials, Validation and Examples on XML the eXtensible Markup Language and all of its sister languages." />
<meta name="keywords" content="XHTML,XML,XSL,XQuery,XPath,XSLT,CSS,MathML,RDF,SMIL,XLink,XLL,XForms,XForm,XML Schema,Schema,DTD,XPointer,XML Syntax,XML Base,XML Protocol,SVG" />
<title>XML - StylishMonkey.com - The Dynamic Web Experience</title>
<script type="text/javascript">
if (top.location != self.location)
{
top.location = self.location;
}
</script>
</head>
<frameset rows="90,*" frameborder="0" framespacing="0">
<frame style="border-bottom: black 1px solid" name="top" scrolling="no" noresize="noresize" src="top.php" />
<frameset cols="215,*" frameborder="0" framespacing="0">
<frame style="border-left: black 1px solid; border-bottom: black 1px solid; border-right: black 1px solid" name="nav" scrolling="yes" src="left.php" />
<frame style="border-right: black 1px solid; border-bottom: black 1px solid" name="main" scrolling="yes" noresize="noresize" src="main.php" />
</frameset>
<noframes>
<body>
Sorry your browser doesn't support our web page!
</body>
</noframes>
</frameset>
</html>
 
The trouble is the highlighted red code, how do i make this particular frame resizeable? I used to know but i now forgot. (Ignore the PHP code near the top of the code)
 
http://www.StylishMonkey.com - The Dynamic Web Experience