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.
#wolf1 {
position: fixed;
top: 55%;
left: 0%;
}
#wolf2 {
position:absolute;
top: 45%;
right: -30%;
}
#about .profile-pic1 {
position: relative;
width: 70%;
border-radius: 0%;
z-index: 1;
}
#about .profile-pic2 {
position: relative;
width: 65%;
border-radius: 0%;
}
#about {
padding-top: 96px;
padding-bottom: 66px;
background: ##1F1F1F; no-repeat center center;
background-size: cover !important;
-webkit-background-size: cover !important;
background-attachment: fixed;
z-index: 2;
position: relative;
min-height: 200px;
width: 100%;
overflow: hidden;
}
Dafür sollte zunächst das "Profilbild" im HTML-Code außerhalb von #about notiert werden - z.B. im Anschluß des <header>-Elements:ich möchte das bild gleich hinter dem dunklen hintergrund des about-bereichs verschwinden lassen.
<!-- Header End -->
<div id="wolf1"><img src="images/portrait1.png" alt="" class="profile-pic1" title="Wolf" /></div>
#wolf1 {
position: fixed;
top: 55%;
left: 0%;
z-index:1
}
#wolf1 .profile-pic1 { /* anstelle von #about .profile-pic1 */
position: relative;
width: 70%;
border-radius: 0%
}
#contact {
background: #191919;
padding-top: 96px;
padding-bottom: 102px;
color: #636363;
z-index: 5; /* das reicht hier nicht aus...auch höhere Werte bringen keine Befriedigung */
}
#contact .section-head { margin-bottom: 42px; }
#contact a, #contact a:visited { color: #11ABB0; }
#contact a:hover, #contact a:focus { color: #fff; }