• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Probleme mit IE

Status
Für weitere Antworten geschlossen.

Dethrall

Neues Mitglied
hallo

ich wusste nich ob sich dieses thema auf html, css oder beides bezieht. deshalb habe ich es einfach mal hier gepostet.

ich teste die website die ich gerade am erstellen bin fortlaufend mit ie 7 und firefox 2. firefox stellt sie richtig dar, doch der ie verschlingt einfach die navi.

ie: Free uploads without any delay - Start uploading now
firefox: Free uploads without any delay - Start uploading now

html file: Free uploads without any delay - Start uploading now
css file: Free uploads without any delay - Start uploading now

kann mir jemand weiter helfen? dank schon mal im voraus.
gretz dethrall
 
Vielleicht solltest Du den Code hier ins Forum posten. Ich kann mir nicht vorstellen, das jemand lust hat, irgendwelche Files von einer unsicheren Quelle zu downloaden. Ich zumindest nicht.
 
Hier ist ein Link zur Seite:
luziavonwyl.ch

html code:

<html>
<head>
<title>luziavonwyl.ch</title>
<link href="css/design_main.css" type="text/css" rel="stylesheet">
</head>

<body>
<div id="page">

<div id="navi">
<table align="right">
<tr>
<td align="right">Home</td>
</tr>
<tr>
<td align="right">Agenda</td>
</tr>
<tr>
<td align="right">Bio</td>
</tr>
<tr>
<td align="right">Musik</td>
</tr>
<tr>
<td align="right">Fotos</td>
</tr>
<tr>
<td align="right">Presse</td>
</tr>
<tr>
<td align="right">Kontakt</td>
</tr>
</table>
</div>

<div id="content">
Home
</div>

</div>
</body>
</html>

css code:

body {
background-color: none;
font: 100.00% Verdana, Arial, Helvetica, sans-serif;
color: #000000;
text-align: center;
}

#page {
width: 700px;
height: auto;
margin: 0;
padding: 0;
margin: 0 auto;
text-align: center;
}

#navi {
height: 500px;
float: left;
margin-left: -20%;
padding: 20px;
width: 100px;
background-color: none;
text-align: left;
border: none;
}

#content {
height: 500px;
background-color: lightgreen;
margin-left: 0px;
padding: 20px;
}

a:link {
text-decoration: none;
color: #FFFFFF;
}

a:visited {
text-decoration: none;
color: #8A0003;
}

img {
border: none;
}
 
Moin,

hallo
ich teste die website die ich gerade am erstellen bin fortlaufend mit ie 7 und firefox 2. firefox stellt sie richtig dar, doch der ie verschlingt einfach die navi.
kann mir jemand weiter helfen? dank schon mal im voraus.
gretz dethrall

erstmal fehlt die Doctype-Deklaration, ohne die der IE6 sofort im Quirksmodus ist.

Du mußt deine Seite vor allem auch im IE6 testen, der macht nämlich weit mehr Fehler als der IE7.

Hier kannst du dir ein Tool runterladen, wo mehrere IE-Versionen nebeneinander funktionieren.

koslowski
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben