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

artesea’s picture

Had just noticed the same thing on my site. My quick fix was to remove the http: from both files.

ANDiTKO’s picture

Or maybe replace the "http" with "https".

realityloop’s picture

removing 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

realityloop’s picture

Status: Active » Fixed

fixed in 9895dbccd4c99fd7fd023076b58a42a5cb32ce1d

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

Added reference to a similar issue with a related module.