2012-10-11, 14:43:14
You need to go edit the sidebar.inc.php ( and add target="_blank" to all three of the a-tags.
Theme -> Edit Theme -> choose sidebar.inc.php from the dropdown -> Edit
Then change
to this
as you can see I added just after FACEBOOK; ?>"
Do this to to all three of the links and they will open in a new blank window.
Theme -> Edit Theme -> choose sidebar.inc.php from the dropdown -> Edit
Then change
Code:
<a href="<?php echo FACEBOOK; ?>"><img src="<?php get_theme_url(); ?>/assets/images/facebook.png" /></a>
to this
Code:
<a href="<?php echo FACEBOOK; ?>" target="_blank"><img src="<?php get_theme_url(); ?>/assets/images/facebook.png" /></a>
as you can see I added
Code:
target="_blank"
Do this to to all three of the links and they will open in a new blank window.
<º)))><