Can't get area to extend when adding a block
PermalinkThis is a downloaded theme so here is some of the page source code.
<div id="wrapper-inner3"> <div id="inner-page-wrap"> <div id="innerpage"> <div class="thinline"></div> <div class="thinline"></div> <div class="thinline"></div> <?php include("elements/headergeneral.php"); ?> <div class="line"></div> <div class="inner-page-content"> <div id="container"> <?php $a = new Area('Gallery'); $a->display($c); ?> </div> <!-- #container -->
Here is the CSS associated with this page
#wrapper-inner3{ float:left; width:100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -ms-background-size: cover; -khtml-background-size: cover; background-size: cover; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100% } #inner-page-wrap{ float:left; width:64%;
How do I get the area to expand accordingly. Thanks for the help.
<div id="container" class="masonry" style="position: relative; height: 0px;">
Try changing it to height:100%
I created this id
#newsimple{ background: #fafafa; height: 100%; margin: 2% 2% 2% 2%; }
and replace it in the div and it's working nicely! Thanks again. I really appreciate it!
With this