Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blocked loading mixed active content "http://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900"

Tags:

html

css

I updated my web site to work with SSL certificate. But now I get error

Blocked loading mixed active content "http://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900"

This code is the problem:

@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);

What are the options to fix this?

For example can i download the file somehow?

like image 311
Peter Penzov Avatar asked Dec 01 '22 17:12

Peter Penzov


1 Answers

Just replace http:// with https:// like this:

https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);

like image 76
Abhishek Pipalva Avatar answered Dec 03 '22 06:12

Abhishek Pipalva