Hello there,
I would like to open the social bookmark links in a new tab/window. Is that possible and, if so, how do I do that?
Thanks!
Janet
Hello there,
I would like to open the social bookmark links in a new tab/window. Is that possible and, if so, how do I do that?
Thanks!
Janet
Hi,
in your sidebar.php find "####### SOCKET CONTAINER #######". Also find <!-- end social_bookmarks--> this should be a few lines lower.
Replace the entire part by
####### SOCKET CONTAINER #######
echo "<div id='socket' class='box'>";
echo " <ul class='social_bookmarks'>";
echo " <li class='rss'><a href='".avia_get_option('feedburner',get_bloginfo('rss2_url'))."'>RSS</a></li>";
if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."' target='_blank'>Facebook</a></li>";
if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."' target='_blank'>Twitter</a></li>";
echo " </ul><!-- end social_bookmarks-->";
Let me know if it works :)
Hey Chris,
Thanks! That did the trick for FB and Twitter, but not for the RSS - can you tell me how I can change that to (or remove it entirley since I don't really need it)?
Thanks!
Janet
Just delete the whole code Chris posted above - the rss icon will be removed too.
and what if i want rss in a new window?
edit: nevermind I got it. I just added the _blank in the corresponding spot
Hi!
Glad that you found a solution :)
Best regards,
Peter
You must log in to post.