Добавление модулей в шаблоне для joomla 1.5

Discussion in 'Изменение шаблона (кастомизация)' started by Atlet, Sep 22, 2008.

  1. Offline

    Atlet Недавно здесь

    Joined:
    Jul 25, 2008
    Messages:
    22
    Likes Received:
    0
    Gender:
    Male
    Народ ниже приведен код вывода трех модулей в моем шаблоне 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; ?>
     
  2.  

Share This Page

Loading...