Rahmen rechts zerhaut Darstellung im IE

Status
Nicht offen für weitere Antworten.

sunflower84

Erfahrenes Mitglied
Hallo Leute

Ich bin gerade dabei eine Webseite zu machen. Hab ein Problem mit der Darstellung im IE.
Eigentlich sieht alles so aus wie es sein soll. Im Mozilla wie auch im IE.
Hab jetzt aber noch im CSS gesagt, dass er mir rechts einen Rahmen hin machen soll.
Im Mozilla sieht es alles gut aus aber im IE zerhaut er mir alles.
Hoffe ihr könnt mir sagen woran das liegt. Hab in der css zweimal gesagt:
border-right-style:solid;
Hier die URL:
http://www.edl.de/alagast-singers-online

Liebe Grüße
Sunflower84
 
Hi,

setz mal folgendes Stylesheet ein:

Code:
#content{
background-color: #FCBA5D;
padding: 0px;
margin: 0px;
margin-left:270px;
height: 65px;
border-right-style:solid;
}

#text{
overflow: auto;
background-color: #FCBA5D;
padding-left: 29px;
padding-right: 20px;
margin-left:0 !important;
margin-left:270px;
height: 435px;
border-right-style:solid;
}
 
Sorry, hier die Auflösung ;)

Code:
#content{
/*float: left;*/ /* auskommentiert = deaktiviert */
background-color: #FCBA5D;
padding: 0px;
margin: 0px;
margin-left:270px;
/*width: 729px;*/ /* auskommentiert = deaktiviert */
height: 65px;
border-right-style:solid;
}

#text{
overflow: auto;
/*float: left;*/ /* auskommentiert = deaktiviert */
background-color: #FCBA5D;
padding-left: 29px;
padding-right: 20px;
margin-left:0 !important;
margin-left:270px;
/*width: 680px;*/ /* auskommentiert = deaktiviert */
height: 435px;
border-right-style:solid;
}
 
Status
Nicht offen für weitere Antworten.
Zurück