Hi Mia
You can do this by adding target="_blank"
to the anchor tags of the social icons widget, but as there are no hooks available you will have to do it on the core theme files.
The path to the file is /fashionistas/inc/widgets/widget-social-icons.php
Change line number 144 which now looks like
<li class="widget-si-<?php echo $athemes_widgets_name; ?>"><a href="<?php echo $athemes_widgets_field_value; ?>" title="<?php echo $athemes_widgets_title; ?>"><i class="ico-<?php echo $athemes_widgets_name; ?>"></i></a></li>
to
<li class="widget-si-<?php echo $athemes_widgets_name; ?>"><a href="<?php echo $athemes_widgets_field_value; ?>" target="_blank" title="<?php echo $athemes_widgets_title; ?>"><i class="ico-<?php echo $athemes_widgets_name; ?>"></i></a></li>
Hope it helps!!
Thanks