Hi All
I have an issue with a wordpress site where the footer is not displaying inline with the Logo and the Address
Any ideas the code is below
#footercolumns {padding:2em 20 20 40}
#footercolumns .block {float:left; width:30%; margin:0 0 0 2.5%}
#footercolumns .first, * html #footercolumns .first{clear:both; margin:50}
<!-- fopter content left -->
<div class="footer-bottom-left">
<div id="logo-footer">
<?php $footer_logo = get_option('minerva_footerlogo');?>
<a href="<?php echo home_url();?>"><img src="<?php echo $footer_logo ? $footer_logo : get_template_directory_uri().'/images/footer-logo.png';?>" alt="" /></a></div>
<div id="footercolumns">
<div class="block first">
<ul>
<li>Here is some stuff.</li>
<li>And some more stuff</li>
<li>Still more stuff</li>
</ul>
</div>
<div class="block">
<ul>
<li>Here is some stuff.</li>
<li>And some more stuff</li>
<li>Still more stuff</li>
</ul>
</div>
<br clear="all" />
</div>
</div>
<!-- fopter content left -->