HTML interesse |
|
Ik heb een globale template gemaakt maar heb wat problemen met de footer. Deze verschijnt boven de witte balk(van de container) maar ik wil graag dat deze erop komt, dus meer naar beneden, maar krijg het niet voor elkaar.
<body>
<div id="container">
<div id="header">
<img src="kop/titel.png" width="900" height="140" alt="">
</div>
<div id="menu">
<a id="home" href="home.html"></a>
<a id="col" href="col.html"></a>
<a id="bestel" href="bestel.html"></a>
<a id="sale" href="sale.html"></a>
<a id="contact" href="contact.html"></a>
<a id="links" href="links.html"></a>
</div>
<div id="sidebar">
<a id="arm" href="arm.html"></a>
<a id="ket" href="ket.html"></a>
<a id="oor" href="oor.html"></a>
<a id="ring" href="ring.html"></a>
<a id="tas" href="tas.html"></a>
</div>
<div id="footer">Footer</div>
</div>
</body>
</html>
<img src="kop/titel.png" width="900" height="140" alt=""> <a id="home" href="home.html"></a> <a id="col" href="col.html"></a> <a id="bestel" href="bestel.html"></a> <a id="sale" href="sale.html"></a> <a id="contact" href="contact.html"></a> <a id="links" href="links.html"></a> <a id="arm" href="arm.html"></a> <a id="ket" href="ket.html"></a> <a id="oor" href="oor.html"></a> <a id="ring" href="ring.html"></a> <a id="tas" href="tas.html"></a>
body {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 17px;
background: #8800FF;
color: #000000;
margin:0;
padding: 0;
height: 100%;
width: 100%;
background-image: url(achtergrond.png);
background-repeat: no-repeat;
background-position: 50% 0%;
}
#container {
position: absolute;
left:50%;
margin-left:-450px;
min-height: 770px;
width: 900px;
background: #CCCCCC;
border: 10px solid #FFFFFF;
border-bottom-style: solid;
border-bottom-color: #FFFFFF;
border-bottom-width: 15px;
}
#header {
height: 80px;
}
#menu {
width: 900px;
height: 53px;
margin-top: 60px;
background: #FFFFFF;
text-align: center;
}
#sidebar {
float: left;
width: 141px;
min-height: 580px;
background: #999999;
border-right-style: solid;
border-right-color: #FFFFFF;
border-right-width: 5px;
height: 100%;
}
#footer {
float: left;
width: 890px;
font-size: 12px;
text-align: left;
padding-left: 5px;
}
body { font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 17px; background: #8800FF; color: #000000; margin:0; padding: 0; height: 100%; width: 100%; background-image: url(achtergrond.png); background-repeat: no-repeat; background-position: 50% 0%; } #container { position: absolute; left:50%; margin-left:-450px; min-height: 770px; width: 900px; background: #CCCCCC; border: 10px solid #FFFFFF; border-bottom-style: solid; border-bottom-color: #FFFFFF; border-bottom-width: 15px; } #header { height: 80px; } #menu { width: 900px; height: 53px; margin-top: 60px; background: #FFFFFF; text-align: center; } #sidebar { float: left; width: 141px; min-height: 580px; background: #999999; border-right-style: solid; border-right-color: #FFFFFF; border-right-width: 5px; height: 100%; } #footer { float: left; width: 890px; font-size: 12px; text-align: left; padding-left: 5px; }
|