Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<body>
<div id="wrapper">
<div id="header">
<div id="logo">
<img src="Link" alt="Bild" />
</div>
<div id="menu">
<ul class="child">
<li class="topmenu">
<a id="main" href="Link">Startseite</a>
<ul>
<li class="submenu"><a href="Link">Über uns</a></li>
<li class="submenu"><a href="Link">Anfahrt</a></li>
<li class="submenu"><a href="Link">Kontakt</a></li>
<li class="submenu"><a href="Link">Impressum</a></li>
</ul>
</li>
....
body {font-family:'Verdana'; font-size: 13px; color: #313131; background: #e5e5e5; hyphens: auto;}
#wrapper {width: auto; max-width: 1300px; min-height: 800px; margin: auto; background: #ffffff; position: relative;}
#header {padding-top: 5px; text-align: center;}
#logo {
}
#menu {
padding-top: 5px;
float: right;
font-size: 13px;
position: relative;
left: -50%; /* or right 50% */
text-align: left;
}
#menu > .child {
position: relative;
left: 50%;
}
#menu ul {
list-style-type: none;
list-style-image: none;
margin: 0px;
padding: 0px;
}
#menu li.topmenu {
float: left;
font-family: 'Verdana';
position: relative;
}
.topmenu a {
float: left;
width: auto;
text-align: center;
}
#menu ul ul {
display: none;
position: absolute;
left: 0px;
top: 57px
}
.topmenu a, .submenu a{
padding: 10px 7px;
color: #e5e5e5;
font-weight: bold;
text-decoration: none;
background: #13237F;
border-width: 0.1px;
border-color: #ffffff;
border-style: solid;
margin: 0px;
-moz-border-radius: 0em;
-webkit-border-radius: 0em;
border-radius: 0em;
}
.submenu a{
font-size: 12px;
width: 170px;
position: relative;
clear: both; /* special IE6 */
}
#menu a:hover, .topmenu.on a {
color:#0E1A5E;
background: #e5e5e5;
border-width: 0.1px;
border-color: #000000;
border-style: solid;
}
#menu li:hover ul {
display:block;
z-index:500;
}
#main {padding-top: 18px; padding-bottom:25px}
#footer {position: absolute; bottom: 0; padding-left: 30px; background-color: #1D2460; width: 100%; height: 25px; color: #ffffff; box-sizing: border-box;}
#footer p {margin:0}
Ein DIV #main existiert garnicht in Deinem Code, stattdessen besitzt der erste Hauptmenüpunkt diese ID.Beim Hauptmenü:
Wie bekomme ich hier die gleiche Höhe der blauen Felder wie beim Submenü hin? Er verzieht die Höhe jedes mal. Vor allem, wenn ich beim DIV #main padding-top: 18px erhöhe, werden die Felder noch höher. Wenn ich es auf 0px ändere, bleiben die Felder immer noch höher als die Submenü-Felder, und die Schrift sitzt ganz oben und nicht mehr mittig im Feld...