Whenever I try to float an element in my magnificent popup, the layout gets all messed up.
You can see for yourself by trying to put the image and text next to each other using "float: left":
Every time I attempt to float the image and text, the white background shrinks. What could be causing this issue? It seems to occur whenever I use "float:left".
Here is a snippet of my HTML code:
<div id="modal_profile_organisor" class="white_modal mfp-hide">
<div class="modal_padding">
<h3>Organisor</h3>
<div class="modal_organisor_details">
<img src="http://placehold.it/100x100">
<p>Some small text</p>
</div>
</div> <!-- /.modal_padding -->
</div> <!-- /#modal_profile_organisor -->
<a href="#modal_profile_organisor" id="popup_organisor_modal">open modal</a>