I'm trying to divide an events list into 2 columns. When I do a simple column-count
, I can't seem to get them to align at the top. What am I missing here??
The domain is here
<div id="eventssection">
<img id="eventheader" src="/images/calendar.png">
<div id="calendarcol">
<?php echo do_shortcode('[events]'); ?>
</div>
<img id="eventmore" src="/images/moreevents.png">
</div>
#calendarcol {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-width: 15em;
-moz-column-width: 15em;
column-width: 15em;
width: 500px;
margin: 0 auto;
}
Thanks!