The stylesheet is called via http:// even if the sidepost widget is embedded in an https page, causing the entire site to have the browser "Mixed http/https content" issue and users to loose confidence with the system.
I've hardcoded in currently:
/*
OLD STYLE CALL
wp_register_style($this->ID, $url, false, $this->p_data['Version']);
*/
// NEW STYLE CALL
wp_register_style($this->ID, '/blog/wp-content/plugins/sideposts/style.css?ver=2.0.3', false, $this->p
_data['Version']);
temporarily, but I know this will get broken net time the plugin updates. Can you put a check for http/https here in the code?
Thanks for your great work on this plugin.
M.