Hallo Forum,
Habe ein recht simples problem und bin neuling in XHTML, PHP, CSS usw.
Hier mein Problem auf einer meiner Homepages:
http://playgame.bplaced.com/
Die Menüleiste 1. Teil ist ca 1 px vom Oberen Ran entfertn. Nächste 2 Buttons sind ca 0,5px entfernt und das letze ist perfekt also 0px.
So habe ich das difiniert...
Menü.php:
HTML
<div align="center" style="margin-top:0;" cellpadding="0" >
<table style="margin-top:0;" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="mitte" height="60" width="10" ><p><h4 href="#"> </h4></p></td>
<td class="mitte" height="61" width="100" ><p><h5 href="#"> </h5></p></td>
<td class="mitte" height="61" width="100" ><p><h5 href="#"> </h5></p></td>
<td class="mitte" height="60" width="10" ><p><h6 href="#"> </h6></p></td>
</tr>
</table>
</div>
Alles anzeigen
_stylesheet.css:
Code
h4 {
display:block;
background-image:url(images/menu_right1.png);
width:10px;
height:60px
}
h5 {
display:block;
background-image:url(images/menu_middle.png);
width:100px;
height:61px
}
h5:hover {
background-image:url(images/menubuttonmouseon.png);
}
h6 {
display:block;
background-image:url(images/menu_right.png);
width:10px;
height:60px
}
Alles anzeigen
Ich weiß einfach nicht weiter und habe schon vieles versucht. Nur wieso ist immernoch ein Abstand vorhanden? -.-