Guten Morgen zusammen.
Ich glaube ich dreh hier noch durch. Bin seit einer Stunde am googeln und suche eine Lösung für meine Navigation .
Es sieht so aus als würde der IE6 irgendwie ein problem mit meinem CSS haben.
Schaut doch einfach mal rein und gebt euer bestes
HTML code
und der CSS code
danke Jungs...
Ich glaube ich dreh hier noch durch. Bin seit einer Stunde am googeln und suche eine Lösung für meine Navigation .
Es sieht so aus als würde der IE6 irgendwie ein problem mit meinem CSS haben.
Schaut doch einfach mal rein und gebt euer bestes
HTML code
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<div id="logo"><img src="../images/logo_immobilien.gif" alt="Dr.Meyer Immobilien AG, Bern" width="176" height="108"></div>
<div id="container">
<div id="navcontainer">
<ul id="navlist">
<li><a href="../unternehmung.html">Unternehmung</a></li>
<li><a href="../projekte.html">Projekte</a></li>
<li><a href="../kontakt.html">Kontakt</a></li>
<li><a href="../partner.html">Partner</a></li>
</ul>
</div>
<div id="zweitezeile"></div>
<div id="drittezeile"></div>
<div id="contentwrapper">
<div id="content"></div>
<div id="contenttitle"></div>
</div>
</div>
<div id="webdesign"></div>
</body>
</html>
und der CSS code
Code:
html { height:100%; }
body {
height: 100%;
background-color: #ffffff;
background-image: url(images/bg.gif);
background-repeat: repeat-x;
margin: 0px;
padding: 0px;
}
.titel {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
.untertitel {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px; font-weight: bold;
}
#container {
position: relative;
top: 50px;
left: 32px;
text-align: left;
margin: 0px;
padding: 0px;
width: 780px;
height: 600px;
}
#contentwrapper {
position: absolute;
background-image: url(images/bg_content.gif);
background-repeat: repeat-x;
text-align: left;
margin: 0px auto;
padding: 0 auto;
top: 175px;
left: 134px;
width: 700px;
height: 565px;
border: 1px solid #333333;
}
#content td {
color: #333333;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
line-height: 16px;
}
#contenttitle{
position: absolute;
text-align: left;
margin: 0px auto;
top: 2px;
left: 14px;
width: 700px;
height: 15px;
color: #333333;
font-size: 13px;
font-family: Arial, Helvetica, sans-serif;
}
#content{
float:left;
position: absolute;
text-align: left;
margin: 0px auto;
padding: 10px auto;
top: 32px;
left: 15px;
width: 700px;
height: 565px;
color: #333333;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
line-height: 16px;
}
#content a:link, #content a:visited
{
color: #333333;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
}
#content a:active, #content a:hover
{
color: #000000;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
}
#logo {
position: absolute;
text-align: left;
margin: 0px auto;
padding: 0px auto;
left: 16px;
top: 16px;
width: 200px;
height: 80px
}
#zweitezeile td {
color: #333333;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}
#drittezeile {
position: absolute;
font-size: 9px;
font-family: Arial, Helvetica, sans-serif;
top: 138px;
left: 153px;
width: 100%;
color: #333333;
}
.partnertext {
font-size: 9px;
font-family: Arial, Helvetica, sans-serif;
}
a.partner:link, a.partner:visited
{
color: #333333;
font-size: 9px;
font-family: Arial, Helvetica, sans-serif;
}
a.partner:active, a.partner:hover
{
color: #000000;
font-size: 9px;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
}
#webdesign {
position: absolute;
left: -2000px;
top: -2000px;
width: 1px;
height: 1px;
}
/* ul navi */
#navcontainer
{
position: absolute;
top: 89px;
left: 132px;
}
#navcontainer ul
{
font-size: 12px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
padding-left: 0;
margin-left: 0;
color:#FFFFFF;
float: left;
width: 100%;
}
#navcontainer ul li { display: inline; }
#navcontainer ul li a
{
padding: 1px 1em;
background-image:url(images/bg_nav.gif);
color: ffffff;
text-decoration: none;
float: left;
}
#navcontainer ul li a:hover
{
background-image:url(images/bg_nav_mo.gif);
color:#000000;
}
#navcontainer ul li a:visited
{
text-decoration: none;
}
danke Jungs...