Nicht mehr ganz neu hier
Hallo, ich habe zwei Navileisten erstellt die zweite soll erst beim Klicken auf Galerie sichtbar werden. Ist dies möglich??
Die zweite Navigation soll nur beim Klicken auf Galerie sichtbar werden.
css
css
HTML:
<div id="navibereich">
<div id="navibereich_innen">
<ul>
<li ><a href="index.php?seite=home"
class="<?php echo ($_GET['seite'] == 'home') ? 'current': 'normal'; ?>"
tabindex="1" >Pinnocchio</a></li>
<li
<li> <a href="index.php?seite=impressum"
class="<?php echo ($_GET['seite'] == 'impressum') ? 'current': 'normal'; ?>"
tabindex="1">Impressum</a></li>
<li> <a href="index.php?seite=Galerie"
class="<?php echo ($_GET['seite'] == 'anfahrt') ? 'current': 'normal'; ?>"
tabindex="1">Anfahrt</a></li><ul>
<div id="navibereich1">
<div id="navibereich_innen1">
<ul>
<li> <a href="index.php?seite=kleinundfein"
class="<?php echo ($_GET['seite'] == 'kleinundfein') ? 'current': 'normal'; ?>" tabindex="1">klein und fein</a></li>
<li > <a href="index.php?seite=toskana"
class="<?php echo ($_GET['seite'] == 'toskana') ? 'current': 'normal'; ?>" tabindex="1">Toskana</a></li>
<li > <a href="index.php?seite=acryl"
class="<?php echo ($_GET['seite'] == 'acryl') ? 'current': 'normal'; ?>" tabindex="1" >Acryl</a></li>
<li > <a href="index.php?seite=Bleistift"
class="<?php echo ($_GET['seite'] == 'bleistift') ? 'current': 'normal'; ?>" tabindex="1">Bleistift</a></li>
<li > <a href="index.php?seite=aquarell"
class="<?php echo ($_GET['seite'] == 'aquarell') ? 'current': 'normal'; ?>" tabindex="1">Aquarell</a></li>
<li > <a href="index.php?seite=foto"
class="<?php echo ($_GET['seite'] == 'foto') ? 'current': 'normal'; ?>" tabindex="1">Foto</a></li>
</ul>
</div> <!-- Ende Navibereich innen -->
</div> <!-- Ende Navibereich -->
</div> <!-- Ende Navibereich innen -->
</div> <!-- Ende Navibereich -->
Die zweite Navigation soll nur beim Klicken auf Galerie sichtbar werden.
css
HTML:
div#navibereich {
overflow: hidden;
text-align: right;
padding: 5px 20px 42px 20px;
margin-top:50px;
}
* html #navibereich { height: 1%; }
div#navibereich ul {
list-style-type:none;
width: auto;
margin-bottom: 0;
margin-top:35px;
}
div#navibereich li {
float:right;
width: auto;
list-style-type: none;
margin: 0;
margin-right: 5px;
margin-bottom:0;
}
div#navibereich a {
color: #fff0cf;
padding: 4px 25px 4px 25px;
font-family: "#fff0cf";
font-size:16px;
}
div#navibereich li a.sie-sind-hier {
color: black;
background-color: white;
border-bottom-color: white;
}
div#navibereich a:hover,
div#navibereich a:focus {
color: black;
background-color: white;
border-bottom-color: white;
}
div#navibereich a:active {
color: black;
background-color: white;
border-bottom-color: white;
}
/*--------------------------------------------------------------*/
div#navibereich1 ul {
list-style-type:none;
float: right;
width: auto;
margin-bottom: 0;
}
div#navibereich1 li {
margin-top:0;
float:right;
width: auto;
list-style-type: none;
margin: 0;
margin-right: 1px;
}
div#navibereich1 a {
border-right:1px solid #fff0cf;;
color: #fff0cf;
padding: 4px 8px 4px 8px;
font-family: "#fff0cf";
font-size: 12px;
}
div#navibereich1 li a.sie-sind-hier {
color: black;
background-color: white;
border-bottom-color: white;
}
div#navibereich1 a:hover,
div#navibereich1 a:focus {
color: black;
background-color: white;
border-bottom-color: white;
}
div#navibereich1 a:active {
color: black;
background-color: white;
border-bottom-color: white;
}