I’m getting errors when I visit your site…hard to give you specifics.
You can use a plugin like sociable to add social networking icons under any post
You can add icons to yuor sidebar by dropping code into a text widget.
Or, you can code the stuff directlyinto your theme.
I have twitter and facebook icons in my footer like this:
found me some icons I liked, and uploaded them to the images directory in my theme
<div class="twitter">
<a href="https://twitter.com/rvoodoo"><img src="<?php bloginfo('template_url'); ?>/images/twitterLogo.png" width="114" height="111" alt="Follow us on Twitter!" /></a>
</div>
<div class="facebook">
<a href="https://www.facebook.com/pages/Toledo/The-Voodoo-Empire/129230423544?ref=mf"><img src="<?php bloginfo('template_url'); ?>/images/fbLogo.png" width="121" height="121" alt="Check us out on Facebook!" /></a>
</div>
is the code in my footer to get the icons loaded in,
and
.facebook {
position: absolute;
height: 121px;
width: 121px;
left: 24px;
top: 76px;
}
.twitter {
position: absolute;
height: 111px;
width: 114px;
left: 150px;
top: 101px;
}
is my css. Yours will of course be different, just trying to give you a sense of how to go about it