Hey
Also ich stehe gerade vor dem Problem dass ich eine Homepage machen will, und das ganze in einem Wrapper gepackt habe. Also Wrapper ist die ganze Box und in ihr drinnen befinden sich verschachtelte Boxen... Vielleicht hilft der code weiter
index.php
und dazu noch das stylesheet
index.css
ich glaube das is leichter zu verstehen
Ja und ich stehe jetzt vor dem Problem dass die Box #bottom_stats unter der Box #bottom_content liegt... jedoch will ich die box nebeneinander haben!
Was kann ich da tun ? ich will jetzt keinen code von euch sondern nur eine Denkhilfe oder einen guten Tipp mit was ich da arbeite bzw was ich falsch gemacht habe.
danke schon mal
Also ich stehe gerade vor dem Problem dass ich eine Homepage machen will, und das ganze in einem Wrapper gepackt habe. Also Wrapper ist die ganze Box und in ihr drinnen befinden sich verschachtelte Boxen... Vielleicht hilft der code weiter
index.php
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div id="wrapper">
<div id="top">
<div id="top_navi">
</div>
<div id="top_banner">
</div>
</div>
<div id="bottom">
<div id="bottom_content">
</div>
<div id="bottom_stats">
</div>
</div>
</div>
</body>
</html>
und dazu noch das stylesheet
index.css
Code:
html
{
font-family: Impact;
font-size: 15px;
padding-top: 50px;
}
#wrapper
{
border-top: 1px solid;
border-left: 1px solid;
border-right: 1px solid;
border-bottom: 4px solid;
margin: 0 auto;
padding: 10px;
width: 920px;
min-height: 1000px;
}
#top
{
border: 1px solid;
width: 900px;
height: 400px;
padding: 10px;
}
#top_navi
{
background: black;
width: 900px;
height: 50px;
}
#top_banner
{
background-image: url("banner.png");
background-repeat: no-repeat;
background-attachment: scroll;
width: 900px;
height: 300px;
padding-bottom: 50px;
}
#bottom
{
border: 1px solid;
width: 900px;
min-height: 600px;
padding: 10px;
}
#bottom_content
{
border: 1px solid;
width: 700px;
min-height: 500px;
padding: 10px;
}
#bottom_stats
{
border: 1px solid;
width: 50px;
min-height: 500px;
}
ich glaube das is leichter zu verstehen
Ja und ich stehe jetzt vor dem Problem dass die Box #bottom_stats unter der Box #bottom_content liegt... jedoch will ich die box nebeneinander haben!
Was kann ich da tun ? ich will jetzt keinen code von euch sondern nur eine Denkhilfe oder einen guten Tipp mit was ich da arbeite bzw was ich falsch gemacht habe.
danke schon mal