HTML interesse |
|
Ik heb de proefversie van dreamweaver gedownload. Eens kijken hoe dat bevalt.
Meerweten: ik heb je lay-out overgenomen en naar eigen wens helemaal aangepast. Echt super van je. Bedankt.
Maar nu heb ik nog een probleem wat ik niet voor elkaar krijg. Als ik foto's wil plaatsen in de container onder de tekst, komen zij niet op die positie maar onder de footer. Wie weet wat er dan fout is aan de navolgende code. Heb alle volgordes al geprobeerd.?
body {
background-color: #33CCFF;
height: 100%;
width: 100%;
}
.main {
background-color: #33CCFF;
width:100%;
height:100%;
}
.titel{
background-color:#33CCFF;
font-size:18px;
font-family:Arial, Helvetica, sans-serif;
text-align:center;
}
.sidebar{
background-color:#33CCFF;
float:left;
}
.content{
margin-left:20px;
background-color:#66FF33;
}
#tekst {
margin-left: 20px;
font-size: 17px;
font-style: normal;
font-family: arial, verdana;
color: #000000;
}
.footer{
background-color:#FFFFFF;
font-size: 13px;
}
body { background-color: #33CCFF; height: 100%; width: 100%; } .main { background-color: #33CCFF; width:100%; height:100%; } .titel{ background-color:#33CCFF; font-size:18px; font-family:Arial, Helvetica, sans-serif; text-align:center; } .sidebar{ background-color:#33CCFF; float:left; } .content{ margin-left:20px; background-color:#66FF33; } #tekst { margin-left: 20px; font-size: 17px; font-style: normal; font-family: arial, verdana; color: #000000; } .footer{ background-color:#FFFFFF; font-size: 13px; }
<body>
<div class="main">
<div class="titel"><img src="titel1.png" height="80" width="800" alt="">
</div>
<div class="sidebar">
<br><a href="#"><img src="menu/menu1.png" border="0" height="100" width="200" alt=""></a>
<br><a href="#"><img src="menu/menu2.png" border="0" height="100" width="200" alt=""></a>
<br><a href="#"><img src="menu/menu3.png" border="0" height="100" width="200" alt=""></a>
<br><a href="#"><img src="menu/menu4.png" border="0" height="100" width="200" alt=""></a>
</div>
<div class="content">
<div id="tekst">
Tekst.<br>
Tekst.
</div>
<div style="margin-left: 5px; margin-top: 50px; border: solid 2px black; height: 192px; width: 300px; float: left;">
<img src="image/foto3.jpg" height="192" width="300" alt="">
</div>
<div style="margin-left: 9px; margin-top: 51px; border: solid 2px black; height: 191px; width: 300px; float: left;">
<img src="image/foto2.jpg" height="191" width="300" alt="">
</div>
<div class="footer">
Hier komt de footer.</div>
</div>
</div>
</body>
<div class="titel"><img src="titel1.png" height="80" width="800" alt=""> <br><a href="#"><img src="menu/menu1.png" border="0" height="100" width="200" alt=""></a> <br><a href="#"><img src="menu/menu2.png" border="0" height="100" width="200" alt=""></a> <br><a href="#"><img src="menu/menu3.png" border="0" height="100" width="200" alt=""></a> <br><a href="#"><img src="menu/menu4.png" border="0" height="100" width="200" alt=""></a> Tekst. <div style="margin-left: 5px; margin-top: 50px; border: solid 2px black; height: 192px; width: 300px; float: left;"> <img src="image/foto3.jpg" height="192" width="300" alt=""> <div style="margin-left: 9px; margin-top: 51px; border: solid 2px black; height: 191px; width: 300px; float: left;"> <img src="image/foto2.jpg" height="191" width="300" alt=""> Hier komt de footer. </div>
|