Guten Abend Community,
ich habe ein Problem mit den div Containern auf meiner Seite. Leider habe ich kein Links, da der Server fehlt und deswegen werde ich Screens reinstellen. Viel ist zu dem fail nicht zu sagen, außer das der Container, wo die vorhandenen Führerscheine drinn sind nicht im bodyContainer sind bzw. profilContainer. Hier mal ein Bild:
Nun kommt der HTML Code mit den php dazwischen, vielleicht liegt ja schon dort der Fehler...:
<div id="profilContent"> <?php if($edit == "off") { ?> <h1>Profil von <?php echo $_SESSION["pName"]; ?></h1> <a href="?page=profil&?edit=on" class="button">Profil bearbeiten</a><br><br> <div class="profilBox float-left" width="350px"> <legend>Accountinformationen</legend> <table> <tbody> <tr> <td width="180px"><b>Name:</b></td> <td><?php echo $_SESSION["pName"]; ?></td> </tr> <tr> <td><b>Level:</b></td> <td><?php echo $_SESSION["pLevel"]; ?></td> </tr> <tr> <td><b>Respekt:</b></td> <td><?php echo $_SESSION["pExp"]; ?></td> </tr> <tr> <td><b>Spielzeit:</b></td> <td><?php echo $_SESSION["pSpielzeit"]; ?></td> </tr> <tr> <td><b>Registriert seit:</b></td> <td><?php echo $_SESSION["pRegdate"]; ?></td> </tr> <tr> <td><b>Letzer Login:</b></td> <td><?php echo $_SESSION["pLastseen"]; ?></td> </tr> <tr> <td><b>Skin:</b></td> <td><img src="/images/skins/Skin_<?php echo $_SESSION["pSkin"] . ".png"; ?>" alt="Skin"></td> </tr> </tbody> </table> </div> <div class="float-clear"></div> <div class="profilBox float-left" width="350px"> <legend>Führerscheine</legend> <table> <tbody> <tr> <td width="180px"><b>Autoführerschein:</b></td> <td><?php if($_SESSION["pCarLic"] == 1){ echo "Bestanden"; } else { echo "Nicht Bestanden"; } ?></td> </tr> <tr> <td width="180px"><b>Motorradführerschein:</b></td> <td><?php if($_SESSION["pMotoLic"] == 1){ echo "Bestanden"; } else { echo "Nicht Bestanden"; } ?></td> </tr> <tr> <td width="180px"><b>LKW - Führerschein:</b></td> <td><?php if($_SESSION["pLKWLic"] == 1){ echo "Bestanden"; } else { echo "Nicht Bestanden"; } ?></td> </tr> <tr> <td width="180px"><b>Flugschein:</b></td> <td><?php if($_SESSION["pPlaneLic"] == 1){ echo "Bestanden"; } else { echo "Nicht Bestanden"; } ?></td> </tr> <tr> <td width="180px"><b>Bootsschein:</b></td> <td><?php if($_SESSION["pBoatLic"] == 1){ echo "Bestanden"; } else { echo "Nicht Bestanden"; } ?></td> </tr> <tr> <td width="180px"><b>Waffenschein:</b></td> <td><?php if($_SESSION["pGunLic"] == 1){ echo "Bestanden"; } else { echo "Nicht Bestanden"; } ?></td> </tr> </tbody> </table> </div> <?php } ?> </div>
Das ganze steckt nochmal im bodyContainer:
<div id="bodyContainer">
<?php if($page == "standart") { ?>
...
<?php } else {
getPage($page);
}?>
</div>
Nun mal zu dem CSS Code, wo ich vermute, dass ich ein Fehler gemacht habe:
#bodyContainer {
margin-left: 200px;
margin-right: 200px;
padding: 11px 15px;
background-color: #fafafa;
min-height: 100px;
border-bottom: solid 2px #45a2ff;
}
#profilContent {
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
font-size: 10pt;
}
#profilContent h1 {
margin-bottom: 5px;
}
.profilBox {}
.profilBox legend {
width: 100%;
font-size: 16pt;
font-weight: bold;
border-bottom: 1px solid #45a2ff;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
Alles anzeigen
Fals was umständlich geschrieben ist, könnt ihr das auch gerne sagen, ich bin aber gerade dabei mir das ganze ein wenig selbst bei zu bringen Ich hoffe ihr könnt mir weiterhelfen und ich wäre euch sehr dankbar.
Mit freundlichen Grüßen
ChaoZz