2 div skal hænge sammen
Har problemet at når content udvider sig følger sidemenuen ikke med også ser designet rimelig dumt udindex.php //
<?php
$page_title = "Forsiden";
$stylesheet ="stylesheet";
include("includes/header.php");
include("scripts/menu.js");
echo "
<body>
<div id='Wrapper'>
<div id='Header'>
</div>
<div id='Navigation'>";
include("includes/menu.php");
echo "
</div>
<div id='ContentTop'>
</div>
<div id='Content'>
</div>
<div id='SideBar'>";
include("includes/sidebar.php");
echo "
</div>
<div id='Footer'></div>
</div>
</body>
</html>";
?>
Stylesheet.css//
#Wrapper {
width: 898px;
padding-top: 0px;
}
#Header {
background-image: url("../images/header.png");
width: 898px;
min-height: 119px;
}
#Navigation {
background-image: url("../images/menu.png");
width: 668px;
min-height: 24px;
max-height: 24px;
text-align: left;
padding-left: 230px;
}
#ContentTop {
background-image: url("../images/contenttop.png");
width: 898px;
float: left;
}
#Content {
background-image: url("../images/content.png");
width: 586px;
float: left;
min-height: 350px;
text-align: left;
padding-left: 56px;
font-family: Verdana;
font-size: 12px;
}
#SideBar {
width: 256px;
background-image: url("../images/sidebar.png");
float: left;
min-height: 350px;
text-align: left;
}
Nogen som har en løsning på dette ??
