0

I'm using BootStrap in the Grails application , but i'm facing weird thing , when use HTTP in my page ex:http://www.mypage.com Glyphicons are working fine , but when i use HTTPS they disappear ex:https://www.mypage.com

while using HTTP: enter image description here

Using HTTPS: enter image description here

i'm calling them using :

<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"
rel="stylesheet">

any advice to make working fine while using HTTPS ?

Sherif
  • 421
  • 3
  • 15

1 Answers1

1

Try using:

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">

Some http resources may be blocked when using https protocol.

Marcin
  • 1,488
  • 1
  • 13
  • 27