in internet explorer maaar in in firefox niet
weet iemand hoe ik in firefox de text er niet omheen gaat?
gr thymen
mijn index (css heb ik nog even niet in een css externie ;)
dus rustig maar :P)
<style>
#menu_left {
background-color: #d7d4c3;
border-right: 1px solid white;
width: 189px;
height: 100%;
border-bottom: 1px solid white;
float: left;
position: relative;
}
#menu_right {
background-color: #d7d4c3;
border-left: 1px solid white;
width: 189px;
height: 100%;
border-bottom: 1px solid white;
float: right;
}
#Container {
width: 100%;
height: auto;
margin: 0 auto 0 auto;
text-align: left;
}
div#content{
width: 100%;
height: auto;
background-color: #d5d2c0;
}
#menu {
height: 40px;
width: 100%;
background-color: #0f202f;
}
#menu_top {
height: 24px;
width: 100%;
background-color: #0f202f;
border-bottom: 1px solid white;
}
#header {
height: 163px;
width: 100%;
background-color: #6d6a61;
}
#content {
height: auto;
width: 100%;
background-color: #555555;
float: center;
}
#footer {
height: 24px;
width: 100%;
background-color: #0f202f;
}
</style>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>layout new klik limiet</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<div id="Container">
<div id="menu_top"></div>
<div id="header"></div>
<div id="menu">bla</div>
<div id="menu_left"><?php include("menu_links.php");?></div>
<div id="menu_right"><?php include("menu_rechts.php");?></div>
<div id="content">
<?php
if (isset($_GET['a']) && preg_match('/^[a-z0-9]+$/i', $_GET['a']))
{
include($_GET['a'] . '.php');
}
else {
include("home.php");
}
?>
<div id="footer"></div>
</div>
</div>
</body>
</html>