Nicht mehr ganz neu hier
Ich habe eine Website mit einem headbereich indem sich links das logo und rechts die Navi befindet. Nun möchte ich im responsible design bei 600px die navi unter das logo fallen lassen. Egal was ich probiert habe das klappt nicht. Er fällt immer unter den headbereich und nur etwas nach links
in der css habe ich dann noch eingefügt was passieren soll bei 600px
aber es klappt nicht
HTML:
body {
background-color:#FFF;
color: white;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: small;
}
/* Allgemeine Klassen und IDs */
div#logo {
float:left;
background-color: white;
color: black;
width: 30%;
height: 120px;
margin-left:-5%;
background-image: url(bilder/Logo2.jpg);
background-repeat: no-repeat;
}
/* ======================================
3. Styles für die Layoutbereiche
====================================== */
div#wrapper {
background:#FFF;
color: black;
width: auto;
max-width: 960px;
padding: 2.08333333333%;
margin: 0 auto;
}
div#kopfbereich {
width: 100%;
height:200px;
background: #FFF;
color: black;
border-bottom: 1px solid #dcdcdc;
}
div#navibereich {
float:right;
width:55%;
margin-left:-4%;
margin-top:120px;
}
div#navibereich_innen {
padding-right: 10px;
}
div#navibereich ul {
}
div#navibereich li {
display:inline;
list-style-type: none;
margin: 1.0416666666666665%;
}
div#navibereich a {
font-family: Verdana, Geneva, sans-serif;
text-decoration: none;
color: #848484;
padding: 7px;
font-size: 13px;
background-color: #FFF;
}
div#navibereich li a{ width:25px; }
div#navibereich a:hover,
div#navibereich a:focus {
color:#b8d56b;
border-bottom: none;
outline:none;
}
div#navibereich li a.current {
color:#b8d56b;
border-bottom: none;
}
HTML:
<div id="wrapper">
<div id="kopfbereich">
<div id="logo"> </div>
<div id="navibereich">
<div id="navibereich_innen">
<ul>
<li ><a href="index.php?seite=startseite"
class="<?php echo ($_GET['seite'] == 'startseite') ? 'current': 'normal'; ?>"
tabindex="1" >Startseite</a></li>
<li > <a href="index.php?seite=leistungen"
class="<?php echo ($_GET['seite'] == 'leistungen') ? 'current': 'normal'; ?>"
tabindex="1">Leistungen</a></li>
<li> <a href="index.php?seite=referenzen"
class="<?php echo ($_GET['seite'] == 'referenzen') ? 'current': 'normal'; ?>"
tabindex="1" >Referenzen</a></li>
<li> <a href="index.php?seite=kontakt"
class="<?php echo ($_GET['seite'] == 'kontakt') ? 'current': 'normal'; ?>"
tabindex="1">Kontakt</a>
<li> <a href="index.php?seite=impressum"
class="<?php echo ($_GET['seite'] == 'impressum') ? 'current': 'normal'; ?>" tabindex="1">Impressum</a></li></ul>
</div> <!-- Ende navibereich_innen -->
</div> <!-- Ende navibereich -->
</div><!-- Ende kopfbereich -->
</div><!-- Ende wrapper -->
HTML:
@media screen and (max-width:600px) {
div#logo {width:100%;
}
div#navibereich {
float:left;
width:100%;
margin-left:-4%;
margin-top:0px;
}
}