When adding "Events" to my widget it looks like screenshot 1 (http://canopylab.com/course/i-am-roma-historical-perspectives-and-contemporary-debates/).
I have ticked the "Show Course Events (on Course pages)" in the widget settings and there it looks like screenshot 2 (http://canopylab.com/event/week-2-roma-after-the-porajmos/).
Why does it look like screenshot 1? I want it to look like screenshot 2.
Thanks
The stylesheet for Events is not getting included for widgets.
Try adding this code in child theme functions.php file :
add_action('wp_enqueue_scripts','wplms_event_enqueue_css');
function wplms_event_enqueue_css(){
wp_enqueue_style( 'wplms-events-css', plugins_url( ).'/wplms-events/css/wplms-events.css' );
}