I have a puzzling issue that I cannot seem to find an answer for despite the countless times it has been asked.
In my footer, there is aligned copyright text, and I am attempting to add 3 logos to the right of it without any line breaks. However, when the screen becomes too small to display both the copyright and the logos side by side, I would like the logos to move below the copyright.
<footer>
<div class="legal">
<a href="#" target="_blank"><B>PRIVACY NOTICE</B></a> |
<a href="#" target="_blank"><B>LEGAL NOTICE</B></a>
<p>
Trademark text
</p>
<br />
<p>
Copyright text
</p>
</div>
<div class="logos">
<a href="#" target="_blank">
<img src="logo1.png" />
</a>
<a href="#" target="_blank">
<img src="logo2.png" />
</a>
<a href="#" target="_blank">
<img src="logo3.png" />
</a>
</div>
</footer>
https://i.sstatic.net/LFias.png
Despite trying various methods such as wrapping copyrights and logos in separate divs and using float: left and right, I failed due to needing the copyright text to be centered within the footer as illustrated above.
Your guidance on this matter would be greatly appreciated.