Hello, based on my understanding the copyright section is composed of (LEFT and RIGHT) widget.
What i would like to achieve is just use one widget but it should be CENTERED instead of left or right.
I have tried doing it using CSS but the problem is it doesn’t work well for different web resolution.
I looked at the footer template or php, i found this code below. I believe this is what needed to be edited, correct?
CAn you please help?
<div class="container">
<div class="row">
<div class="col-sm-6 footer-copyrights-right">
<?php if(is_active_sidebar('footer-copyrights')): ?>
<?php dynamic_sidebar('footer-copyrights'); ?>
<?php else: ?>
<?php if($fd) etheme_footer_demo('footer-copyrights'); ?>
<?php endif; ?>
</div>
<div class="col-sm-6 footer-copyrights-right">
<?php if(is_active_sidebar('footer-copyrights2')): ?>
<?php dynamic_sidebar('footer-copyrights2'); ?>
<?php else: ?>
<?php if($fd) etheme_footer_demo('footer-copyrights2'); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
Let me know also how where to add it on my childtheme.