I have an index html page, and inside this html page I have something like:
<link href="http://www.extenaldomain.com/style.css" rel="stylesheet" type="text/css"></link>
if I run my html without using SSL (ie. http://www.mydomain.com/index.html) then all the styling applies to the html which is good, however if I run https://www.mydomain.com/index.html) then none of the rules in the css apply to the html.
So, besides downloading the style.css from externaldomain.com into my mydomain.com is there any way to make it work?
//www.external.domain.com/style.css
. – Rick yesterday