Hi edenbrackstone,
In your theme files open up sidebar.php and look for:
####### SOCKET CONTAINER #######
echo "<div id='socket' class='box'>";
echo " <ul class='social_bookmarks'>";
do_action('avia_add_social_icon','sidebar');
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."'>Facebook</a></li>";
if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."'>Twitter</a></li>";
echo " </ul><!-- end social_bookmarks-->";
echo "<div class='hide_content_wrap hide_content_wrap_copyright '>";
echo "<span class='copyright'>".__('© Copyright','avia_framework')." <a href='".home_url('/')."'>".get_bloginfo('name')."</a></span>";
?>
<?php
echo "</div>";
echo "</div>";
####### END SOCKET CONTAINER #######
You can add in html for the images you want in that block to integrate them into the sidebar area. If you want to just put raw html in without dealing with any php, just escape the php like this:
?>
your html
<?php
Then you just put that in between the lines above so that you don't have to work in php at all.
Regards,
Devin