I noticed in the style.css file there's the following lines:
/* Import the Open Sans webfont from Google CDN */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300&subset=latin,greek,cyrillic,vietnamese);
On an SSL site, this is being called and causing an SSL error, i.e. this page has insecure content. Now, the page displays for for modern browsers, but IE won't work right with this error unless using compatibility mode, and it still gives an insecure content message.
How about removing this @import from css and use the following in the template.php file:
function adminimal_preprocess_html(&$variables) {
drupal_add_css('//fonts.googleapis.com/css?family=Open+Sans:400,300&subset=latin,greek,cyrillic,vietnamese',array('type' => 'external'));
}
Similar issue with Adminimal Administration Menu --> https://drupal.org/node/2030773
Comments
Comment #1
artesea commentedHad just noticed the same thing on my site. My quick fix was to remove the http: from both files.
Comment #2
ANDiTKO commentedOr maybe replace the "http" with "https".
Comment #3
realityloop commentedremoving the http: is the best way to deal with this as it will work for both http and https sites. I've just added a patch for this in the Adminimal Admin Menu module https://drupal.org/node/2030773#comment-7642721
Comment #4
realityloop commentedfixed in 9895dbccd4c99fd7fd023076b58a42a5cb32ce1d
Comment #5.0
(not verified) commentedAdded reference to a similar issue with a related module.