Load CSS Images under HTTPS -


if have css file loads https (e.g. https://www.mydomain.com/includes/style.css) contains

body { background:url("../images/background.png"); }

the background pic loads like: (without https). know quick fix around without putting full path css file (needs relative)? i'm looking easiest fix!

thanks in advance!

gabriel

i think should give try protocol urls (network-path reference) solve problems when use http mixed https. css in case :

body { background:url("//www.mydomain.com/images/background.png"); } 

Comments