
I don't know but I could expect it is the other MOD you have about the Profile Views. Som maybe we need to re-design that a little bit.

You could try using this one. See if that helps. That makes the small miniavatars start at the left edge instead of half way in.
Code: Select all
<!-- IF S_PROFILE_VIEWS and PROFILE_VIEWS -->
<tr>
<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_PROFILE_VIEWS}: </td>
<td class="gen"><b>{PROFILE_VIEWS}</b></td>
</tr>
<tr>
<td colspan="2" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap" class="gen"><a href="{S_PROFILE_VIEW_ACTION}">{L_PROFILE_VIEWS_LIST}</a>: </td>
</tr>
<tr>
<td colspan="2" class="gen"><table>
<tr align="center">
<!-- BEGIN profile_views -->
<td><table><tr align="center" height="42"><td>{profile_views.AVATAR}</td></tr><tr align="center" valign="bottom"><td><b>{profile_views.PROFILE_VIEWS_LIST}</b></td></tr></table></td>
<!-- END profile_views -->
</tr>
</table></td>
</tr>
<!-- ENDIF -->
If it's better but still too wide - you could maybe add the profile views/miniavatars to a new row - like the signature. Something like:
Find:
Code: Select all
<!-- IF SIGNATURE -->
<tr>
<td class="cat" colspan="<!-- IF U_PROFILE_PICTURE -->3<!-- ELSE -->2<!-- ENDIF -->" align="center"><h4>{L_SIGNATURE}</h4></td>
Before-add:
Code: Select all
<!-- IF S_PROFILE_VIEWS and PROFILE_VIEWS -->
<tr>
<td class="cat" colspan="<!-- IF U_PROFILE_PICTURE -->3<!-- ELSE -->2<!-- ENDIF -->" align="center"><h4>{L_PROFILE_VIEWS}: {PROFILE_VIEWS}</h4></td>
</tr>
<tr>
<td class="row1" colspan="<!-- IF U_PROFILE_PICTURE -->3<!-- ELSE -->2<!-- ENDIF -->"><div class="postbody" style="padding: 10px;">
<a href="{S_PROFILE_VIEW_ACTION}">{L_PROFILE_VIEWS_LIST}</a>:<br />
<!-- BEGIN profile_views -->
<table><tr align="center" height="42"><td>{profile_views.AVATAR}</td></tr><tr align="center" valign="bottom"><td><b>{profile_views.PROFILE_VIEWS_LIST}</b></td></tr></table>
<!-- END profile_views --></div></td>
</tr>
<!-- ENDIF -->
Hope that helps. Tell me how it went.
