wat moet ik in de css of html code veranderen?
css code
/* CSS layout */
body {
margin: 0;
padding: 0;
}
#top_nav {
background-color: #99CCFF;
}
#masthead {
min-width: 600px;
}
#logo {
float: left;
width: 16px;
Background-color: #003399;
background-repeat: repeat-y;
overflow:hidden;
}
#header {
margin-left:16px;
background-color: #99CCFF;
font-family: "Times New Roman", Times, serif;
font-size: 36pt;
color: #0000FF;
}
#container {
clear: both;
min-width: 600px;
}
#left_col {
width: 30px;
float: left;
background-color: #003399;
background-repeat: repeat-y;
overflow:hidden;
}
#right_col {
float: right;
width: 200px;
width: 200px;
float: right;
background-color: #0000FF;
background-repeat: repeat;
color: #FFFFFF;
font-family: "Times New Roman", Times, serif;
font-size: 10pt;
}
#page_content {
margin-left: 30px;
margin-right: 200px;
background-color: #99CCFF;
background-repeat: repeat;
font-family: "Times New Roman", Times, serif;
font-size: 12pt;
color: #0000FF;
}
#footer {
clear: both;
background-color: #6699FF;
}
html code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled 1</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="layout.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="masthead">
<div id="top_nav">
</div>
<div id="logo" style="width: 16px; height: 55px">
<img height="16" src="../../ttvyerseke.png" width="16" /></div>
<div id="header">
TTVYerseke</div>
</div>
<div id="container">
<div id="left_col">
left<br />
col</div>
<div id="right_col">
tekst</div>
<div id="page_content">
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</div>
<div id="footer">
kk</div>
</body>
</html>