Insecure call to Google Fonts
Some browsers have issue with making insecure calls (port:80) on a secure page (port:443)
Line 232 of /includes/setup-theme.php includes the following:
wp_enqueue_style ( 'googleFonts', 'http://fonts.googleapis.com...
which could be changed to:
wp_enqueue_style ( 'googleFonts', 'https://fonts.googleapis.com
This will not affect port:80n sites and will stop some browsers from throwing a warning on SSL enabled sites
Regards...John.