Hi, i have working at my site but i have a Problem whit a Insecure Stylesheet i think. i dont know how i can Explain it better. i hope the screen can show you what i mean.
Any Ideas How i can fix that ?
Best Wishes Simon
Hi, i have working at my site but i have a Problem whit a Insecure Stylesheet i think. i dont know how i can Explain it better. i hope the screen can show you what i mean.
Any Ideas How i can fix that ?
Best Wishes Simon
You should change the Google Fonts URLs to HTTPS as well.
You are using https on your site but including the google webfont with a http connection β thatβs what the mixed content is all about. Just use a https-connection here as well, then you should be fine.
and how exactly can i do that
I guess you are including the webfont links in your header-snippet, so just change the http
in those lines to https
:
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Merriweather:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
to
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
It works Fine , Thanks you