Fonts and Font Awesome icons not loading over SSL

后端 未结 7 2294
心在旅途
心在旅途 2021-01-06 06:16

I\'m trying to get my website to load correctly over SSL, and every time I view the page, the icons and font aren\'t loading.

Here\'s what I\'m using for my CSS and

7条回答
  •  既然无缘
    2021-01-06 06:21

    In my case change http source to https while using @import statement in css file works fine.

    @import url(https://opensource.keycdn.com/fontawesome/4.7.0/font-awesome.min.css);
    [class*="fontawesome-"]:before {font-family: 'fontawesome', sans-serif;}
    

提交回复
热议问题