Jump to content

HTTP vs HTTPS changes


jtwalter

Recommended Posts

I have something weird happening on my site. I bought an SSL certificate a while ago and got lost trying to get my site to show as "https". I'm savy enough with web development, but this stuff is beyond me. My site http://www.julianwalter.com works fine, but https://www.julianwalter.com loses some functionality (left/right arrows) and looks different. Does anybody know what's going on?

 

Thank you!

 

Julian

Link to comment
Share on other sites

When loading a site in HTTPS, all the resources (images, javascript, CSS files) must also be in HTTPS. You appear to be loading jquery.js through HTTP rather than HTTPS.

Link to comment
Share on other sites

If you want to have those resources use the same protocol, the easiest way is to just leave out the protocol in the URL, e.g.:

<script src="//code.jquery.com/jquery.js"></script>
Writing the URL like that will use the same protocol that the page was loaded with. Also, if you're linking to third party resources over HTTPS, make sure those services actually support HTTPS. You may need to save them and load them from your server instead.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...