Help with Jekyll Site

Hi there,
i have been playing with Jekyll for a while now and now is the first time i am struggeling :frowning:

When you look at this forked site, the scrolling is not smooth and the nav bar does now show the actual position on it.

Compare
https://patrick131184.github.io/dentist/#treatments
and
http://obaez.com/dentistsmile/

The funny part is, when i ran my forkes locally with Jekyll it looks ok and everything works as exptected…
When i upload this _site on my webserver (apache2) it look same as on github pages.

Does someone have a tip/hint for me?

Thank you!

You’re trying to load JQuery over http

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>

Try loading over https://

You saved my day… it works! Thanks a lot!

1 Like