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

Тема в разделе "Изменение шаблона (кастомизация)", создана пользователем Atlet, 22.09.2008.

  1. Offline

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

    Регистрация:
    25.07.2008
    Сообщения:
    22
    Симпатии:
    0
    Пол:
    Мужской
    Народ ниже приведен код вывода трех модулей в моем шаблоне 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.  

Поделиться этой страницей

Загрузка...