I just figured this out and thought I would share.
Open up the file wp-featured-content-slider/content-slider.php
Find the code “#featured_slider .content_left {.” Right below this line, it says “float: left;”. Change this to “float: right:”
It basically flips the order on how they are displayed.
Now, it could get “goofy” if someone stretches out the page. Yet, I figure that oddity doesn’t both me much.
The reason is that both the text and image are floated left. Without switching the order they are introduced in the script (I can’t find it), this just moves the text right and the image left. If the box they are in gets expanded somehow, their could be a gap between the text and image since they are floated in separate directions, not back to back.