HTTPS and SSL insecure "bug"
-
import (at line 13 in style.css) load fonts.googleapis.com using HTTP protocol, if your website is under HTTPS you have insecure content warning.
The line:
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);
Must be replaces for:
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300);
In order to works well in both cases.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘HTTPS and SSL insecure "bug"’ is closed to new replies.