This question has probably been asked a million times; however, I can't seem to find an answer to my issue.
I have a footer that contains aligned copyright text and I am trying to add 3 logos to the right of it (without a line break). Once the screen is too small to contain the copyright and the logos, I want to move the logos 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>
I tried wrapping the copyrights and the logos in two separate divs and using float: left and right but failed. Since I need my copyright text to be aligned in the middle of the footer as shown above.
Any guidance would be greatly appreciated.
