Currently, I am implementing Bootstrap Affix on my header with the intention of making it fixed after scrolling 100px down the page. Here is the jQuery code snippet I have incorporated:
$('#navbar').affix({
offset: {
top: 100,
}
});
However, I have encountered an issue where the content jumps up when I scroll. I tried adding a wrapper with minimum height, but that did not resolve the problem.
If anyone could offer assistance, it would be greatly appreciated!
For reference, here is the link to the fiddle: https://jsfiddle.net/b5fusmsn/12/