Our site was originally developed by a third party. Since then, we’ve taken ownership of the site, and I’m the lead (read: only) developer working on it. We have multiple forms on the site which are delivered over SSL, yet the content isn’t. With the recent updates to Google Chrome, the pages delivered over SSL aren’t rendered properly (no pop message displayed to users to display the insecure content), and I’ve been banging my head against a wall trying to get it to work. IE and FF at least display messages about displaying the content or not.
So my question is - how can I get my CSS to be delivered over SSL when it needs to be?
After importing the stylesheets into EE, this is how I’m linking to them:
<link rel="stylesheet" type="text/css" media="screen" href="{stylesheet='styles/bootstrap'}" />And this is how I’m linking to images within the css:
.promo li.step-1 { background: url("img/bullet-01.png") 0 50% no-repeat; }I’ve tried changing the image urls to {site_url}img/bullet-01.png and //{site_url}img/bullet-01.png and neither work.
Any suggestions that I haven’t tried? I’m really new at working with EE, and my Google Fu seems to have failed me with this.
Thanks.