Hi there
You can find it in /templates/ja_directory/tpls/blocks/footer.php
<?php if ($this->getParam('t3-rmvlogo', 1)): ?>
<div class="col-md-4 poweredby text-hide">
<a class="t3-logo t3-logo-color" href="http://t3-framework.org" title="<?php echo JText::_('T3_POWER_BY_TEXT') ?>"
target="_blank" <?php echo method_exists('T3', 'isHome') && T3::isHome() ? '' : 'rel="nofollow"' ?>><?php echo JText::_('T3_POWER_BY_HTML') ?></a>
</div>
<?php endif; ?>
To change image url you can add to your custom.css the url for your image changing the default url
.t3-logo,
.t3-logo-color {
background-image: url("http://static.joomlart.com/images/jat3v3-documents/logo-complete/t3logo-big-color.png");
}
Hope that helps