I want that the table is adjusting tot the screen resolution.
i want a maximum of 4 colomns.
it may be less, but then automaticly.
Could someone help me !
Here's my code:
<?php
$roles = ak_get_roles(true); // Available roles (translated)
$dt_format = get_option('date_format') . ' | ' . get_option('time_format'); // Date-Time format
$teller = 0;
?>
<table class="profile-list">
<tr>
<?php foreach ($users as $user ) :
$teller++;
?>
<td><table><tr><td><?php echo get_avatar($user['ID'], $avatar_size) ?></td>
<td><a href="<?php echo $baselink . urlencode($user['user_login']); ?>"><?php echo $user['display_name']; ?></a></td></tr></table></td>
<?php
if (($teller % 4) == 0)
{
?></tr><tr>
<?php
}
endforeach; ?>
</tr>
</tr>
</table>