Hi,
I’m looking at the chrome inspect tool and saw that I have errors in my codepen code. It looks like it’s because the image I’m linking for my header is from an http: site when codepen is https: Is this something I should bother with or is it just letting me know it’s coming from an unsecure site?
In general, you want to worry about that HTTPS stuff. Thankfully, it’s really easy to account for. Instead of specifying which protocol you want to use, just place two slashes at the beginning of the URL.
This way, if you’re connected to CodePen via HTTPS, your browser will automatically try to fetch the picture using HTTPS. If you’re just using HTTP, it’ll connect that way as well.
I just tried this out in my own CodePen, and it seems like the server hosting the picture isn’t properly configured for HTTPS, so it’s just failing. It’d be best to download the photo, then host it somewhere yourself that uses encryption (Dropbox is an easy way to do this), but if you really can’t be bothered with that, just keep accessing the photo via HTTP.