Hello
I would like to ask about something
I would like to put 4 positions user1-4 in 2 rows and 2 columns
in middle column of my three columns template
my template is a template based on tables
ok so I have prepared some code;
(...)
<tr>
<?php if moscountmodules('user1')>0 { ?>
<td valign="top"><div>
<?php mosLoadModules ( 'user1' ); ?>
</div></td><?php { ?>
<?php if moscountmodules('user2')>0 { ?>
<td valign="top"><div>
<?php mosLoadModules ( 'user2' ); ?>
</div></td><?php { ?>
</tr>
<tr>
<?php if moscountmodules('user3')>0 { ?>
<td valign="top"><div>
<?php mosLoadModules ( 'user3' ); ?>
</div></td><?php { ?>
<?php if moscountmodules('user4')>0 { ?>
<td valign="top"><div>
<?php mosLoadModules ( 'user4' ); ?>
</div></td><?php { ?>
</tr>
and I have got this what I want but ...
the question is
why when I have no modules in eg. user2 position, module in user1 don't expand for all widht this row only what I get is module in user1 width 50% widht and near of its I get empty space, white get nervouse space
