• Currently your style.css file references a font using
    @import url(https://fonts.google.com...)

    This results in ssl / tls protected pages being categorized as insecure because of mixed content. You should either use “https”
    @import url(https://fonts.google.com...)
    or entirely omit the protocol part
    @import url(//fonts.google.com...)
    instead of “http”. The latter makes the browser to use the same protocol as the one used for the actual page.

    • This topic was modified 4 years, 6 months ago by redeye86.
  • The topic ‘SSL/TLS Insecure Content / Google Fonts’ is closed to new replies.