Hallo,
ich habe in den letzten Tagen für meine Page eine erweiterte Navigation in Droplineformat geschrieben..
Leider habe ich jetzt das ein oder andere Problem, wo ich nicht weiter komme...
Hier mal die geschriebenen Scripte:
CSS-Code
PHP-Code
www.oliver-leifken.de
Das ist meine Website, die Navigation soll eigentlich komplett durchgehen(siehe beigefügtes Bild) und nicht wie momentan auf der Page zu sehen ist, nur ein kleines Stück.
Hoffe ihr könnt mir weiterhelfen...
Schönen Start in die Arbeitswoche.
Gruß Oli
ich habe in den letzten Tagen für meine Page eine erweiterte Navigation in Droplineformat geschrieben..
Leider habe ich jetzt das ein oder andere Problem, wo ich nicht weiter komme...
Hier mal die geschriebenen Scripte:
CSS-Code
Code:
#navibox
{
width:850px;
height:auto;
background-color:#cccccc;
border-style: none solid none solid;
border-color: #ccc;
border-width: 0px 5px 0px 5px;
margin:0 auto;
}
/*------ Navigationsleiste ------ */
.navi
{
padding-left: 0px;
margin-left: 0px;
background-color: #ccc;
color: white;
height: auto;
background-color: #ccc;
width: 100%;
position: relative;
font-family: arial, verdana, sans-serif;
font-size: 11px;
z-index: 500;
}
.navi .select
{
margin: 0;
padding: 0 0 0 40px;
list-style: none;
text-align: center;
white-space: nowrap;
}
.navi li
{
display:inline;
}
.navi .select a
{
display: block;
padding: 5px 15px;
background-color: #ccc;
color: black;
line-height: normal;
text-decoration: none;
float: left;
border-left: 1px solid #fff;
white-space: nowrap;
}
.navi .select a:hover,
.navi .select li:hover a
{
background-color: #000;
line-height: normal;
cursor: pointer;
color: #fff;
}
.navi .sub
{
display: none;
}
/* IE6 only */
.navi table
{
border-collapse: collapse;
margin: -1px;
font-size: 1em;
width: 0;
height: 0;
}
.navi .sub
{
margin: 0;
padding: 0 0 0 40px;
list-style: none;
}
.navi .sub li {background-color: #fff;}
.navi .select :hover .sub
{
height: 18px;
display: block;
position: absolute;
float: left;
top: 24px;
left: 0;
text-align: center;
}
.navi .select :hover .sub li a
{
display: block;
height: 18px;
line-height: 16px;
float: left;
background-color: #fff;
padding: 0 16px;
margin: 0;
white-space: nowrap;
border: 1px solid #000;
border-color: #888 #777 #666 #ddd;
color: #000;
font-size: 10px;
}
.navi .select :hover .sub li a:hover
{
color: #000;
background: #ccc;
border-color: #fff #333 #000 #fff;
line-height: 15px;
}
PHP-Code
Code:
<div id="navibox">
<div class="navi">
<ul class="select"><li><a href="#nogo"><b>Home</b></a></li></ul>
<ul class="select"><li><a href="#nogo"><b>Whats up</b></a></li>
<li><a href="#nogo"><b>All about Oli</b><!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul class="sub">
<li><a href="#nogo">Meine Daten</a></li>
<li><a href="#nogo">Facts about Oli</a></li>
<li><a href="#nogo">Facts about Fussball</a></li>
<li><a href="#nogo">Facts about Business</a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
<li><a href="#nogo"><b>Galerie</b><!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul class="sub">
<li><a href="#nogo">Privat</a></li>
<li><a href="#nogo">Fussball</a></li>
</ul>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
</ul>
<ul class="select"><li><a href="#nogo"><b>Impressum</b></a></li>
<!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>
</ul>
</div>
</div>
</div>
www.oliver-leifken.de
Das ist meine Website, die Navigation soll eigentlich komplett durchgehen(siehe beigefügtes Bild) und nicht wie momentan auf der Page zu sehen ist, nur ein kleines Stück.
Hoffe ihr könnt mir weiterhelfen...
Schönen Start in die Arbeitswoche.
Gruß Oli