Hi,
To open a image slider link in new tab needs to add some code (target=”_blank”) in anchor tag
Go to Appearance -> Editor -> header.php file
Find in line no. 113 
<a href="<?php echo of_get_option('slideurl'.$sln, true); ?>">
and relpace with 
<a href="<?php echo of_get_option('slideurl'.$sln, true); ?>" target="_blank">
Find at line no. 119 
<a class="button" href="<?php echo of_get_option('slideurl'.$sln, true); ?>">
and replace with
<a class="button" href="<?php echo of_get_option('slideurl'.$sln, true); ?>" target="_blank">