Thread: Competative?
View Single Post
Old 06-24-2005, 11:13 AM   #8 (permalink)
jinexile
 
Super Techie

Join Date: Feb 2005

Posts: 262

jinexile

Default

Crazy, you're missing a DOC TYPE... the validator will explain to your what you're missing.

Yes if you put information in the <no frames> will help. There are plenty of ways around the frame problem. CSS can do just about anything you want to do with frames/tables.

Here's an example of what you can do with CSS:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN">
<html>
<head>
  <meta
 content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>TEST</title>
  <style type="text/css">
<!--
#NavBar{
border:1px solid black;
margin:0px;
}
#MainContent{
border-width:0 1px 1px 1px; /*to make the middle border look like its 1px */
border-style:solid;
height:400px;
margin:0px;
overflow:auto;
}
-->
  </style>
</head>
<body>
<div id="NavBar">This
is
the nav bar</div>
<div id="MainContent">This
is the main content area.

This
is the main content area.

This
is the main content area.

</div>


</body>
</html>
Copy and paste the "This is the main content area
" a few does times and you will see what I mean
__________________
AMD Athlon 64 3000+ (Overclocked to 3300+)
ASUS K8V-Deluxe
1GB PC3200 DDR
2x200GB Seagate SATA RAID 0
BFG 6800GT OC w\\128MB Ram
2x 19\" Samsung 930B LCDs
jinexile is offline