MyBB Community Forums

Full Version: Members List
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I have modified the member's list page quite a bit, please see picture below to see what I have done.

[Image: memberslist.png]

As you can see, all users are listed vertically. All I want is for it to show horizontally across the page instead.

I have modified MEMBERSLIST.
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->member_list}</title>
{$headerinclude}
</head>
<body>
{$header}
{$multipage}
<tr>
{$referral_header}
</tr>
<form method="post" action="memberlist.php">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
{$users}
<tr>

Also modified MEMBERLIST_USER
<tr>
	<td class="{$alt_bg}" align="center">
<span class="smalltext">
	{$user['avatar']}<br>
	{$user['profilelink']}
	{$usergroup['groupimage']}
	{$user['userstars']}
</span></td>
	{$referral_bit}
</tr>

Can someone point me in the right direction please?

Many thanks in advance.
Thanks AJS!

Using it now, will modify a few things but it's perfect.