I recently installed a SSL certificate on my (prestashop) website. my site won't diplay a green bar because: Mixed Content: The page at 'website' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Open+Sans:400,800,300,700'. This request has been blocked; the content must be served over HTTPS. i don't even use this font. i checked some css files and tpl header files but i can't find where this request is coming from.
when i inspect elements in google chrome the only thing i can find is: 'http://fonts.googleapis.com/css?family=Open+Sans:400,800,300,700'
is there a easy way to see from wich file this request is coming from?
http://
to just//
in resource links/includes. This should instruct the client to use the same protocol as the request to the website (eg website will load fonts.google..., and https:// will load https://) - CollinD