05/14/2015 at 4:08 pm
#334330
Keymaster
@ MeesterExecuteurs
Change this:
<div class="cn-entry" style="-moz-border-radius:4px; background-color:#FFFFFF; border:1px solid #E3E3E3; color: #000000; margin:8px 0px; padding:6px; position: relative;">
<span style="float: <?php echo is_rtl() ? 'right' : 'left'; ?>; margin-right: 10px;"><?php $entry->getImage( array( 'preset' => 'profile' ) ); ?></span>
<div style="margin-left: 10px;">
<span style="font-size:larger;font-variant: small-caps"><strong><?php $entry->getNameBlock(); ?></strong></span>
<div style="margin-bottom: 20px;">
<?php $entry->getTitleBlock() ?>
<?php $entry->getOrgUnitBlock(); ?>
</div>
<?php echo $entry->getBioBlock(); ?>
</div>
<div style="clear:both"></div>
</div>
to this:
<div class="cn-entry" style="-moz-border-radius:4px; background-color:#FFFFFF; border:1px solid #E3E3E3; color: #000000; margin:8px 0px; padding:6px; position: relative;">
<table>
<tr>
<td><span><?php $entry->getImage( array( 'preset' => 'profile' ) ); ?></span></td>
<td>
<div style="margin-left: 10px;">
<span style="font-size:larger;font-variant: small-caps"><strong><?php $entry->getNameBlock(); ?></strong></span>
<div style="margin-bottom: 20px;">
<?php $entry->getTitleBlock() ?>
<?php $entry->getOrgUnitBlock(); ?>
</div>
<?php echo $entry->getBioBlock(); ?>
</div>
</td>
</tr>
</table>
</div>
I think that do what you want with tables.