AlexMineiro
Grünschnabel
Hi,
komme leider nicht mehr weiter und zwar gibts es 2 Probleme
Der Header ist in 3 Div Container verteilt mit jeweils einem bg-bild aber ie zeigt nen abstand an. Das zweite Problem ist das ich mit 1px height div machen will und ie will das auch ned annehmen hoffe einer kann meine 2 probleme lösen. CSS und HTML sind valid
HTML
CSS
Bild wie das aussieht gibts hier: http://img1.myimg.de/fehler932.gif
Ich danke schonmal im vorraus
komme leider nicht mehr weiter und zwar gibts es 2 Probleme
Der Header ist in 3 Div Container verteilt mit jeweils einem bg-bild aber ie zeigt nen abstand an. Das zweite Problem ist das ich mit 1px height div machen will und ie will das auch ned annehmen hoffe einer kann meine 2 probleme lösen. CSS und HTML sind valid
HTML
Code:
<body>
<!-- Header Anfang -->
<div class="header">
<div id="header-links" style="background-image:url(Bilder/header_left.gif);"></div>
<div id="header-rechts" style="background-image:url(Bilder/header_right.gif);"></div>
<div id="header-mitte" style="background-image:url(Bilder/header_middle.gif);"></div>
</div>
<!-- Header Ende -->
<!-- Navigation Anfang -->
<div class="navigation">
<div id="navi-links">
<div class="weisse-linie" style="background-color:#ffffff;"></div>
<div id="navi-mitte" style="background-color:#15304e;padding-left:8px;line-height:23px; color:#ffffff;">News | Baseball Links | Kontakt | Gästebuch | Bannertausch | Partnerseiten | Disclaimer</div>
<div class="weisse-linie" style="background-color:#ffffff;"></div>
</div>
<div id="navi-rechts" style="background-image:url(Bilder/dj_bottom.gif);"></div>
</div>
<!-- Navigation Ende -->
<!-- Livescore Anfang -->
<div class="livescore">
<div id="livescore-links" style="background-image:url(Bilder/livescore_bg.gif);">
<div id="zeit" style="color:#15304e;"><?echo "".date("d.m.Y")." - ".date("H:i")." Uhr";?></div>
<div id="live" style="color:#15304e; text-align:center"><u>Aktuelle Livescores</u> +++ New York Yankees - San Diego Padres 15:3 +++ New York Mets - Chicaco Cubs 1:3 +++ </div>
</div>
<div id="livescore-rechts" style="background-color:#ffffff;"></div>
<div id="livescore-mitte" style="background-color:#15304e;"></div>
</div>
<!-- Livescore Ende -->
<!-- Menue+Content Anfang -->
<!-- Menue+Content Ende -->
</body>
CSS
Code:
body {
background-image:url(Bilder/background.gif);
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size:11px;
font-weight:bold;
}
.header {
width:900px;
height:123px;
}
#header-links {
float:left;
width:300px;
height:123px;
}
#header-rechts {
float:right;
width:300px;
height:123px;
}
#header-mitte {
height:123px;
}
.navigation {
width:900px;
height:26px;
}
#navi-links {
float:left;
width:834px;
height:26px;
}
#navi-rechts {
float:right;
width:66px;
height:26px;
}
.weisse-linie {
width:834px;
height:1px;
}
#navi-mitte {
width:826px;
height:24px;
}
.livescore {
width:900px;
height:20px;
}
#livescore-links {
float:left;
width:898px;
height:20px;
}
#livescore-rechts {
float:right;
width:1px;
height:20px;
}
#livescore-mitte {
height:20px;
}
#zeit {
float:left;
width:150px;
padding-left:8px;
line-height:20px;
font-size:10px;
}
#live {
float:right;
width:732px;
padding-right:8px;
line-height:20px;
font-size:10px;
}
Bild wie das aussieht gibts hier: http://img1.myimg.de/fehler932.gif
Ich danke schonmal im vorraus