Kann mir denken das das Thema mittlerweile nervt. Da mir aber hier noch etwas die Erfahrung fehlt frage ich mal nett euch.
Im FF sieht das ganze ja recht geschmeidig aus allerdings im IE7 schiebt es den div#content nach unten den div#upper-content darauf ebenso.
Hier mal die DIVs als Code:
Tja und um ein besseres Bild zu zeigen hier mal der header.php wo meine DIVs gezeigt werden
Der entsprechende <div id="content"> wird je nach template-site geladen.
Die Frage ist wie ich meine DIVs im IE am besten ordentlich positionieren kann.
Im FF sieht das ganze ja recht geschmeidig aus allerdings im IE7 schiebt es den div#content nach unten den div#upper-content darauf ebenso.
Hier mal die DIVs als Code:
Code:
body
{
background-color: #1e1e1e;
background-image: url(../img/HG-Main.png);
background-repeat: no-repeat;
background-position:top center;
// background-attachment:fixed;
padding:0px;
text-align: center;
font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}
div#wrapper{
width: 1000px;
height: 800px;
margin: 15px auto;
text-align: left;
background-image: url(../img/HG-Main.png) no-repeat;
}
div#navi{
margin: 29px 0px 0px 35px;
padding: 10px 0px 0px 10px;
background: url(../img/Navi-Main.png) no-repeat;
width: 175px;
height: 685px;
float: left;
}
div#header-pic{
margin: 29px 40px 0px 0;
background: url(../img/Header-Pic.png) no-repeat;
width: 174px;
height: 120px;
float: right;
}
div#header{
margin: 29px 11px 0px 0;
background: url(../img/MainHeader.png) no-repeat;
width: 555px;
height: 120px;
float: right;
}
div#content-pic{
margin: 9px 40px 0px 0px;
background: url(../img/Content-Pic.png) no-repeat;
width: 174px;
height: 270px;
float: right;
}
div#content{
margin: -565px 224px 0px 0px;
background: url(../img/Main-Content.png) no-repeat;
width: 555px;
height: 444px;
float right;
}
div#upper-pic{
margin: 289px -174px 0px 0px;
background: url(../img/Upper-Pic.png) no-repeat;
width: 174px;
height: 276px;
float: right;
}
div#uppercontent{
margin: 183px 224px 0px 0px;
background: url(../img/Upper-Content.png) no-repeat;
width: 555px;
height: 110px;
float: right;
}
div#mappic{
background: url(../img/fff2.png);
margin: 6px 6px 6px 6px;
width: 543px;
height: 432px;
float: center;
}
.clear{
clear: both;
}
Tja und um ein besseres Bild zu zeigen hier mal der header.php wo meine DIVs gezeigt werden
PHP:
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<?php include 'templates/userstats.tpl'; ?>
<div id="header">
<div id="title">
<p class="title_ausrichtung">
<span class="title_gam">entspechender Titel</span><br />
<span class="title_keywords">keywords eben und so on</span></p>
</div>
</div>
<?php include 'navi.php';?>
<div id="content-pic">
</div>
<div id="upper-pic">
</div>
<div id="uppercontent">
</div>
<br class="clear" />
Der entsprechende <div id="content"> wird je nach template-site geladen.
Die Frage ist wie ich meine DIVs im IE am besten ordentlich positionieren kann.