Народ ниже приведен код вывода трех модулей в моем шаблоне user9 or user10 or user11 они расположены в одну горизонтальную строку. Как мне добавить еще три модуля user12 or user13 or user14, но чтоб они распологались под user9 or user10 or user11 <?php if($this->countModules('user9 or user10 or user11')) : ?> <!-- Bottom modules --> <div id="bottom_wrap"> <?php if ($this->countModules('user9')) : ?> <div class="<?php echo $user_position_4; ?>"> <!-- user9 --> <jdoc:include type="modules" name="user9" /> </div> <?php endif; ?> <?php if ($this->countModules('user10')) : ?> <div class="<?php echo $user_position_4; ?>"> <!-- user10 --> <jdoc:include type="modules" name="user10" /> </div> <?php endif; ?> <?php if ($this->countModules('user11')) : ?> <div class="<?php echo $user_position_4; ?>"> <!-- user11 --> <jdoc:include type="modules" name="user11" /> </div> <?php endif; ?> </div> <?php endif; ?>