Moin,
ich habe folgendes Problem:
Ich möchte auf der FE-Seite das Admin-Panel anzeigen lassen. Soweit sogut. Nur leider überdeckt mir das Admin-Panel teile der HP, bzw. wird selbst von teilen der HP überdeckt.
Jemand ne Idee, wie ich das Admin-Panel in einen freien Bereich bekomme?
Hier das HTML-Template sowie die CSS-Formatierungen:
HTML-Code:
<!-- ###DOKUMENT### begin --> <div id="Dunkel"> <div id="Logo_klein"><img src="./fileadmin/template/pics/logo-85px.gif" width="85" height="79" border="0" alt="Logo"></div> <div id="Name">NAME</div> <div id="Adresse">STRASSE - PLZ ORT</div> </div> <div id="Hell"> <div id="Links"> <div id="LastUpdate">###LASTUPDATE###</div> <div id="Navigation">###MENU###</div> <div id="Login">###LOGIN###</div> </div> <div id="Inhalt">###INHALT###</div> </div> <!-- ###DOKUMENT### end -->
Code:
/* Body-Formatierung */
body {
SCROLLBAR-BASE-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
font-family:Arial,Helvetica,sans-serif;
font-size:12pt;
background-color: #DDD9A2;
margin: 0;
padding: 0;
}
html {
margin: 0;
padding: 0;
}
#Dunkel {
position: static;
background-color: #A65300;
height: 121px;
}
#Hell {
position: static;
background-color: #DDD9A2;
}
/* Kleines Logo oben links */
#Logo_klein {
position: static;
margin-left: 18px;
margin-top: 18px;
width: 85px;
height: 79px;
float: left;
}
/* Vereinsname oben rechts */
#Name {
position: static;
color: #DDD9A2;
font-size: 200%;
text-align: right;
padding-right: 30px;
padding-top: 18px;
}
/* Vereinsanschrift oben rechts */
#Adresse {
position: static;
color: #DDD9A2;
font-size: 100%;
text-align: right;
padding-right: 30px;
}
/* Linker Block */
#Links {
float: left;
}
/* Last Update */
#LastUpdate {
font-size: x-small;
width: 200px;
margin-left: 5px;
margin-top: 5px;
}
/* Navigationsmenü */
#Navigation {
font-size: 100%;
width: 220px;
margin-top: 15px;
margin-left: 5px;
}
/* Loginbox */
#Login {
margin-top: 300px;
margin-left: 5px;
width: 200px;
}
/* Inhalte */
#Inhalt {
position: absolute;
left: 230px;
font-size: 100%;
margin-top: 10px;
padding-left: 50px;
padding-right: 50px;
}