Wie und wo müsste ich Änderungen vornehmen, damit sich das Logo (Header / Projekt-Name) nicht mehr bei Scrollen mit bewegt?
verwendete ilch Version: 2.1.x
betroffene Homepage: swsw.byethost15.com/
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
| Geschlossen | ||


<script type="text/javascript">
$(document).ready(function () {
var top = $('header').offset().top - parseFloat($('header').css('marginTop').replace(/auto/, 10));
$(window).scroll(function (event) {
var y = $(this).scrollTop();
if (y >= top) {
$('header').addClass('fixed');
} else {
$('header').removeClass('fixed');
}
});
});
</script>
.fixed .navigation {
position:fixed;
z-index:1050;
width:100%;
top:0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.fixed .navigation {
/*position:fixed;*/
z-index:1050;
width:100%;
top:0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
}
| Geschlossen | ||
![]() |
Zurück zu Design und Templates | |