2014-02-01, 08:44:04
(2014-02-01, 06:29:44)Carlos Wrote: Would it be enough to separate 1234 and 5678 with <br class="clear" />?
If so, with latest NM Addons version 0.9.0 you may do it like this:
PHP Code:<?php
$mytemplate = '
<div class="four columns">
<div class="post_image"><img class="scale-with-grid" src="{{ post_image_url }}" /></div>
<h1 class="title"><a href="{{ post_link }}">{{ post_title }}</a></h1>
<h2 class="post_date">Gepost op: {{ post_date }}</h2>
<span>{{ post_excerpt }}</span>
<h3 class="read_more"><a href="{{ post_link }}">Lees meer</a></h3>
</div>
';
nm_set_custom_maxposts(4);
nm_custom_display_recent($mytemplate);
?>
<br class="clear" />
<?php
nm_set_custom_offset(4);
nm_custom_display_recent($mytemplate);
?>
Although I think it's not really the way to work, it works for now. Content is still responsive. Will comment when I find a different solution.