Dequeue, Unregister, Remove Action – Not Working on Plugin

Going off of the plugins source code I simply copied then changed the add_action(); to remove_action(); in my child-themes function.php

add_action('wp_print_styles', 'add_advanced_recent_posts_widget_stylesheet');

Replace add with remove.

remove_action('wp_print_styles','add_advanced_recent_posts_widget_stylesheet');

So simple. Now I know.