I don´t know if can anybody help me to costumize my layout.
This is what the "Browse Member´s Page look like:

That´s what i like to do:

I believe this is the code that controlls the page layout:
Code: Select all
<?php
?>
<h3>
<?php echo $this->translate(array('%s member found.', '%s members found.', $this->totalUsers),$this->locale()->toNumber($this->totalUsers)) ?>
</h3>
<ul id="browsemembers_ul">
<?php foreach( $this->users as $user ): ?>
<li>
<?php echo $this->htmlLink($user->getHref(), $this->itemPhoto($user, 'thumb.icon')) ?>
<?php if( $this->viewer()->getIdentity() ): ?>
<div class='browsemembers_results_links'>
<?php echo $this->userFriendship($user) ?>
</div>
<?php endif; ?>
<div class='browsemembers_results_info'>
<?php echo $this->htmlLink($user->getHref(), $user->getTitle()) ?>
<?php echo $user->status; ?>
<?php if( $user->status != "" ): ?>
<div>
<?php echo $this->timestamp($user->status_date) ?>
</div>
<?php endif; ?>
</div>
</li>
<?php endforeach; ?>
</ul>
<?php if( $this->users ): ?>
<div class='browsemembers_viewmore' id="browsemembers_viewmore">
<?php echo $this->paginationControl($this->users, null, null, array(
'pageAsQuery' => true,
'query' => $this->formValues,
//'params' => $this->formValues,
)); ?>
</div>
<?php endif; ?>
<script type="text/javascript">
page = '<?php echo sprintf('%d', $this->page) ?>';
totalUsers = '<?php echo sprintf('%d', $this->totalUsers) ?>';
userCount = '<?php echo sprintf('%d', $this->userCount) ?>';
</script>