Looking for some assistance with the footer on my webpage. I would like to center the text in the footer with two images positioned on the right side. Thank you in advance.
Below is the code I am currently using:
<div class="CopyRightFooter">
<div class="col-md-7 col-lg-8">
<p class="text-center FooterText text-md-center">©Copyright</p>
</div>
<div class="col-md-5 col-lg-4 ml-lg-0">
<div class="text-md-center">
<ul class="list-unstyled list-inline">
<li class="list-inline-item"> <img src="<?php echo get_template_directory_uri(); ?>/img/instagram.png" class="footerImg" alt="Ig"> </a> </li>
<li class="list-inline-item"> <img src="<?php echo get_template_directory_uri(); ?>/img/fb.png" class="footerImg" alt="Fb"> </a> </li>
</ul>
</div>
</div>
</div>