Ich brauche mal Hilfe bitte. Ich probiere seit gestern Abend rum, aber bekomme einfach nicht das gewünschte Ergebnis.
Es geht um folgende Seite: Nelly’s Stallgewieher
Meine .css:
[CODE]html, body{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
font-size: 8pt;
background: url(…/images/background2.jpg);
background-repeat: x;
width: 100%;
height: 100%
}
#rahmen{
border: solid #000000 1px;
width: 1000px;
margin: auto !important;
margin-bottom: 10px !important;
background-color: #FAF9F3;
-webkit-box-shadow: 5px 5px 15px #0D030C;
-moz-box-shadow: 5px 5px 15px #0D030C;
box-shadow: 5px 5px 15px #0D030C;
min-height: 100%;
height: auto !important;
/height: 100%;/
float: none;
padding-bottom: 8px;
}
#logo{
border-bottom: solid #000000 1px;
height: 232px;
}
#inhalt{
background-color: #FAF9F3;
margin: 5px;
height: auto !important;
min-height: 100%;
height: 100%;
padding: 15px;
}
#navigation{
padding-top: 25px;
padding: 15px;
float: left;
height: 100%;
height: auto !important;
min-height: 100%;
width: 130px;
}
#footer{
background-color: #aa55ff;
margin-bottom: 3px;
text-align: right;
height: 15px;
width: 1000px;
clear: both;
}
A.navnormal{
color: #000000;
font-size: 10px;
text-decoration: none;
}
.center{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
font-size: 11px;
text-align: center;
line-height: 1.5;
}
.left{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
font-size: 11px;
text-align: left;
line-height: 1.5;
}
h1 {
color: #000000;
font-size: 12px;
}[/CODE]
Ich möchte eigentlich erreichen, dass das inhalts-div auf 100% erweitert wird und dadurch der footer nach unten rutscht. Sobald Text eingefügt ist (siehe Seite Impressum) funktioniert das auch. Solange die Seite aber noch leer ist, wird zwar mein Rahmen-div auf 100% erweitert, aber das inhalts-div nicht. Wo liegt hier mein Denkfehler?
Weiterhin habe ich die Darstellung in IE und FF verglichen und festgestellt, dass auf der Impressum-Seite der Text richtigerweise vollständig rechts der Navigation ausgerichtet wird. Im Firefox verschiebt sich aber der Text unter die Navigation. Braucht FF einen Zusatz?
Danke!