How to display modules in User1 position only

Inquisitive wrote: Is it possible to publish something in just the User1 position without also having to publish something in the User2 position? Currently I have to publish something in both to be able to have anything displayed in the User1 & U2 position (ie - below the Banner position and above the Mainbody). If I try to publish something in only one position nothing shows up. I would like to display only one section of info in the space currently used by the User1 & U2 positions.

Here is how I would do it so you will still have the ability to use both user1 and user2. In other words you can use either module by itself of have both active. The modules will stack down the center of the main content area of the template.

First change the following line in index.php under your templates directory (simply changing the conditional from && to ||):
<?php
}
    if (
mosCountModules( 'user1' ) && mosCountModules( 'user2' )) {
    include(
'user1_user2.php');
}
?>
to this
<?php
}
    if (
mosCountModules( 'user1' ) || mosCountModules( 'user2' )) {
    include(
'user1_user2.php');
}
?>
Then make user1_user2.php look like this:
<?php defined( '_VALID_MOS' ) or die( 'Restricted access' ); ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<?php if ( mosCountModules( 'user1' )) { ?>
  <tr>
    <td width="100%">
<div class="user1_inner">
<?php mosLoadModules ( 'user1', -2 ); ?>
</div>
</td>
  </tr>
<?php }
    if (
mosCountModules( 'user2' )) {
?>

  <tr>
    <td width="100%">
<div class="user2_inner">
<?php mosLoadModules ( 'user2', -2 ); ?>
</div>
</td>
  </tr>
<?php } ?>
</table>

Unable to see the code

Maxx, I'm not able to see the code here? I would like to use one of the two user menus and the code changes for this would be greatly appreciated. -Mike