Code:
<div class = "row"> <div class = "col3"> </div> <div class = "col7"> </div> <div class = "col2"> </div> </div>
I even tried inline float and clear declarations, but that didn't work, either. Here's the whole footer:
Code:
<div id="footer-bg"> <div style = "clear:both;"> </div> <div id="footer" class="lw row" style = "float:left; clear:none;"> <div class = "col3" style = "float:left; clear:none;"> </div> <div class = "col7" style = "background:#eeeeff; text-align:left; float:left; clear:none;"> <p>© <?php echo date( 'Y' ); ?> <?php bloginfo('name'); ?> — <?php __( 'All Rights Reserved.', 'montezuma' ); ?></p> </div> <div class = "col2" style = "float:left; clear:none;"> </div> </div> </div>