Hi,
When I resize (or open on a mobile device) my website, I've got weird text through my header. Also the headerpicture isn't full length.
website
tnx in advance
<a href="#gkMainbody" class="dark btn-border" data-sr="enter bottom and move 50px and wait .3s">Lees meer</a>
<a href="#name_of_layer_below">Link</a>
// smooth anchor scrolling
jQuery('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
target = jQuery(target);
if(target.parent() !== jQuery('#gkStyleArea')) {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target.selector;
});
}
});