I've found this code
$(window).scroll(function(){
$('#header').css({
//Why this 15, because in the CSS, we have set left 15, so as we scroll, we would want this to remain at 15px left
'left': $(this).scrollLeft() + 15
});
});
And it does exactly what I need, but I have no idea how to implement it in my HTML or CSS. Can anyone help me out? I'd truly appreciate it.