Ja, hört sich komisch an. Aber es ist echt komisch.
Also:
Ich hab da meine index datei. In der habe ich 5 mal includet.
Das sieht so aus:
PHP
<div class="navi">
<?php include("navigation.php"); ?>
</div>
<div class="content">
<?php include("cutenews/show_news.php"); ?>
</div>
<div class="welcome">
<?php include("welcome.php"); ?>
</div>
<div class="count">
<?php include("count.php"); ?>
</div>
<div class="about">
<?php include("about.php"); ?>
</div>
Alles anzeigen
Dann hab ich die style.css Datei. Da sieht es so aus:
Code
.content {
align:left;
position:absolute;
overflow:auto;
width:325px;
right:73px;
top:570px;
}
.navi {
align:center;
font-family: small fonts;
line-height: 10px;
font-size:9px;
width:109px;
position:absolute;
right:403px;
top:570px;
}
.welcome {
align:left;
position:absolute;
width:186px;
right:73px;
top:360px;
}
.count {
overflow:auto;
position:absolute;
width:131px;
right:262px;
top:258px;
}
.about {
overflow:auto;
position:absolute;
width:111px;
right:327px;
top:160px;
}
Alles anzeigen
Jetzt habe ich das Problem, dass die Klassen gar nicht so angezeigt werden. Also das Contentfeld ist nicht da wo es hin gehört und so weiter.
Alles verrutscht.
Wenn ich nur content und navi include ist es aber richtig. Nur wenn ich mehr dazu mache, dann geht es nicht mehr.
..Woran liegt das??
Könnt ihr helfen??