razakenad
You can go to footer block: root/templates/ja_magz/tpls/blocks/footer.php
And swap the code snippet which render the logo:
<?php if($hasFooterLogo): ?>
<div class="<?php echo ($hasT3Logo || $hasFooterSocial || $hasFooter) ? 'span4' : 'span12' ?> footer-logo <?php $this->_c('footer-logo')?>">
<jdoc:include type="modules" name="<?php $this->_p('footer-logo') ?>" />
</div>
<?php endif; ?>
to underneath the social code, like this: http://prntscr.com/jiey7h
And you will need to customize a bit in CSS as by default, elements in social block are styled with 'right' position, you can use Inspect Element editor in Chrome or Firefox, right click on the element you wanna change and you will see how it's style on the right side: http://prntscr.com/jiezch
change to your value and add the custom css into the file: root/templates/ja_magz/css/custom.css (create this file it doesn't exist).
Regards