Posts: 312
Name: Jason Eyermann
Location: england bristol
|
At work i'm finishing off a site someone else did. It uses frames and I don't know much about frames.
All I what to do is center the contained elements. As the moment they have just been given a left margin which looks rubbish on either v.small or v.large monitor.
Can anybody help me.
And what does the cols="15%,80%" mean?
The code is below
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>LGV</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #0E2B8D;
}
-->
</style></head>
<frameset cols="15%,80%" framespacing="0" frameborder="no" border="0">
<frame src="blank.htm" name="blank" scrolling="no" id="blank">
<frameset cols="800,*" framespacing="0" frameborder="no" border="0">
<frameset rows="140,*" framespacing="0" frameborder="no" border="0">
<frame src="menu.htm" name="menu" scrolling="no" id="menu">
<frame src="lgv.htm" name="info" id="info">
</frameset>
<frame src="blank.htm" name="blank" scrolling="no" id="blank">
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>
Thanks jason
|