If you are using the user1 and user2 areas in templates ddj001-ddj007 with word wrapping turned on then you will most likely see your user1 and user2 areas not lining up across the top. The following picture shows the problem when the areas do not line up:

In this case our user1 and user2 areas are
lastest news and
popular
Make the following edits to your user1_user2.php file to make sure that they are top aligned (feel free to replace all the old code in user1_user2.php with this code by using copy and paste):
<?php defined( '_VALID_MOS' ) or die( 'Restricted access' ); ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<tr>
<td width="50%" valign="top">
<div class="user1_inner">
<?php mosLoadModules ( 'user1', -2 ); ?>
</div>
</td>
<td width="50%" valign="top">
<div class="user2_inner">
<?php mosLoadModules ( 'user2', -2 ); ?>
</div>
</td>
</tr>
</table>
and you should end up with something that looks like this:
Is there a way to make the
Thankyou
Geesh! Sorry!!!
Working?
Yes, I believe your answer is above