HI I'm trying to edit the 2 copyright lines, in footer.php text in /tpls/blocks folder.
<section class="t3-copyright">
<div class="container">
<div class="row">
<div class="<?php echo $this->getParam('t3-rmvlogo', 1) ? 'col-md-8' : 'col-md-12' ?> copyright <?php $this->_c('footer') ?>">
<jdoc:include type="modules" name="<?php $this->_p('footer') ?>" />
</div>
<?php if ($this->getParam('t3-rmvlogo', 1)): ?>
<div class="col-md-4 poweredby text-hide">
<a class="t3-logo t3-logo-small t3-logo-light" 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; ?>
</div>
</div>
</section>
Please suggest how to convert above snippet to two lines into simple HTML but retaining the text classes of template used..
Thanks