Hello, if you are looking for change in the above mentioned theme, then you need to do this:
1. Open qa-theme.php file and replace the entire function q_view_buttons with this below:
function q_view_buttons($q_view) {
//Social Media Buttons for question
$page_url = urlencode(qa_opt('site_url').$this->request);
$page_title = urlencode($q_view['raw']['title']);
$this->output(
'<div class="qa-share-buttons">',
'<div class="qa-share-text">Share on </div>',
'<div class="qa-share-final">',
'</div>',
'<div class="qa-clear"></div>',
'</div>'
);
qa_html_theme_base::q_view_buttons($q_view);
}
PS: I am the developer of that theme you pointed to.