I
ibu2002
Guest
Hallo,
ich habe ein Problem mit der XHTML+CSS Umsetzung meines PSD Designs.
Das Design sieht wie folgt aus:
Mein Problem ist es nun das Inhaltsfenster rechts neben die Navigation zu bekommen.
Das DIV #Content soll nur die Klammer für die darin befindlichen DIV's dienen.
Bisher sieht das Ganze aber so aus :
Bin für jede Hilfe dankbar
Gruß ibu
ich habe ein Problem mit der XHTML+CSS Umsetzung meines PSD Designs.
Das Design sieht wie folgt aus:
Mein Problem ist es nun das Inhaltsfenster rechts neben die Navigation zu bekommen.
Das DIV #Content soll nur die Klammer für die darin befindlichen DIV's dienen.
Code:
<html>
<head>
<title>hp</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
background-image: url(Bilder/hinter_02.gif);
background-repeat: repeat-x;
}
.container{
width:1024px;
position: relative;
margin:0 auto;
padding: 0;
}
#header {
width:1024px;
}
#logo {
background-image:url(Bilder/hp_02.gif);
background-repeat:no-repeat;
width:592px;
height:256px;
overflow: auto;
float: left;
}
#upleft {
background-image:url(Bilder/hp_01.gif);
width:218px;
height:296px;
float: left;
}
#upright {
background-image:url(Bilder/hp_03.jpg);
width:214px;
height:302px;
float:left;
}
ul#menu{
width:218px;
overflow:visible;
margin:0px;
clear:left;
}
ul#menu li{
background-image:url(Bilder/button.gif);
background-repeat:no-repeat;
height:43px;
width:218px;
text-align:center;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
padding: 9px;
}
#content {
margin: 0px;
background-color: #F00;
}
</style>
</head>
<body>
<div class="container">
<div id="header">
<div id="upleft">
</div>
<div id="logo">
</div>
<div id="upright">
</div>
</div>
<ul id="menu">
<li>Button1</li>
<li>Button2</li>
<li>Button3</li>
<li>Button4</li>
<li>Button5</li>
<li>Button6</li>
</ul>
<div id="content">
content
</div>
</div>
</body>
</html>
Bin für jede Hilfe dankbar
Gruß ibu