Possible to make borders invisable on empty areas?
Permalink
Imagine I got a simple area that can be added by a user:
Now in the css I give the Area_1 a solid border of 1px; Now when a user hasn't added a block to this area, it simply shows a thin small line.
Is there a way to make borders not show up if there's no block or stack added to an empty area?
<div class="col-lg-12 Area_1"> <div class="row"> <?php $a = new Area('Area 1'); $a->display($c); ?> </div> </div>
Now in the css I give the Area_1 a solid border of 1px; Now when a user hasn't added a block to this area, it simply shows a thin small line.
Is there a way to make borders not show up if there's no block or stack added to an empty area?