Display lastest members into custom page

cajkan

Active Member
Hello all i need some help about displaying newest members into custom page

The reason for this is coz im using custom style and if i use newest members plugin doesnt fit with my design

Ive edited ssi_new.html and ive added table from table_top_row_premium.html

looks fine but idk how to display all members like this

Heres the result



Heres the code from ssi_new.html

<script language="javascript">
function out(link,username) {
out_url = '{$list_url}/index.php?a=out&u=' + username+'&go=1';

link.href = out_url; // For browsers that don't support setAttribute
link.setAttribute('href', out_url);
}
</script>
{$sites}
<div id="server-container-premium">

<div id="server-left-container">

<h1>{$rank}</h1>
<h2><a href="{$list_url}/{$url_helper_a}stats{$url_helper_u}{$username}{$url_tail}">DETAILS</a></h2>

</div>

<div id="server-middle-container">

<a href="{$url}" onclick="out(this,'{$username}');" class="vistip" title="{$title}" rel="nofollow"><img src="{$banner_url}" alt="{$title}" class="vistip" title="{$title}"/></a>
<h1 class="premium_font"><a href="{$url}" onclick="out(this,'{$username}');" class="vistip" title="{$title}" rel="nofollow">{$title}</a> - <a href="{$list_url}/{$url_helper_cat}{$category_url}{$url_tail}">{$category}</a></h1>
<p class="premium_font">
{$description}
</p>

</div>

<div id="server-right-container" align="right">

<div class="gold_member"></div>

<table class="votes_table">
<tr>
<td class="votes_table_in"></td>
<td style="color:#2CBA00; font-weight:bold; font-size:15px;">{$unq_in_0_monthly}</td>
</tr>
<tr>
<td class="votes_table_out"></td>
<td style="color:#FF0000; font-weight:bold; font-size:15px;">{$unq_out_0_monthly}</td>
</tr>
</table><div class="fb-like" data-href="{$url}" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
</div>


</div>

Can anyone please re-edit this code i really dont know how to display all as list

Thanks
 

Basti

Administrator
Staff member
Cajkan, for once read the text when we help you.

I told you yesterday. The code from table_top_row comes into ssi_new_row.html
And ssi_new.html shall only consist of {$sites} tag
 
Top