Hi,
normalerweise hab ich mit html weniger probleme aber an dem teil hier hocke ich jetzt schon ne weile.
möchte einfach nur das das auswahl menü etwas nach oben rückt.
(das menü ist nicht von mir geschrieben!)
hab auch schon per try and error probiert, was aber auch nix gebracht hat.
könnt ihr mir mal nen tipp geben wo ich was übersehe.
(sorry das es so lange ist aber so kann mans besser testen dachte ich)
normalerweise hab ich mit html weniger probleme aber an dem teil hier hocke ich jetzt schon ne weile.
möchte einfach nur das das auswahl menü etwas nach oben rückt.
(das menü ist nicht von mir geschrieben!)
hab auch schon per try and error probiert, was aber auch nix gebracht hat.
könnt ihr mir mal nen tipp geben wo ich was übersehe.
(sorry das es so lange ist aber so kann mans besser testen dachte ich)
PHP-Code:
<html>
<head>
<title></title>
<style type="text/css">
a {font-size:11px;}
#logo
{width:756px; height:70px; margin:0px auto; border:1px solid #000000;}
#navcontainer
{width: 756px; margin:0 auto;padding: 0;height: 25px;font: 11px Verdana, sans-serif;
border-bottom: 1px solid #bbb;list-style-type:none;background: #aaaaaa; border:1px solid #000000;}
#navlist li
{float: left;margin: 0;padding: 0;width: auto;display: inline;}
#navlist li a, #navlist li a:link
{background: #fff;color: #555;text-decoration: none;padding: 3px 5px 3px 5px;display: inline;}
#navlist li a:hover
{color: #039;border-bottom: 3px solid #bbb;cursor: pointer;background: #eee;}
#navlist li a#current, #navlist li a#current:link
{color: #000;cursor: default;font-weight: bold;border-bottom: 3px solid #999;}
#navlist li a#current:hover
{border-bottom: 3px solid #f90;background: #eee;}
</style>
</head>
<body>
<div id="logo">
</div>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#">Startseite</a></li>
<li><a href="#" id="current">Aktuelle</a></li>
<li><a href="#">Wunschliste</a></li>
<li><a href="#">Top10</a></li>
<li><a href="#">Statistik</a></li>
<li><a href="#">Links</a></li>
</ul>
</div>
</body>
</html>
Kommentar