Новости Joomla

SW JProjects v.2.5.0 - компонент каталога цифровых проектов на Joomla

SW JProjects v.2.5.0 - компонент каталога цифровых проектов на Joomla

👩‍💻 SW JProjects v.2.5.0 - компонент каталога цифровых проектов на Joomla.Компонент - менеджер цифровых проектов для Joomla! CMS. Компонент обеспечивает создание каталога цифровых проектов и предоставляет возможность скачивания, в том числе с использованием лицензионных ключей.👩‍💻 v.2.5.0. Что нового?Схемы структур данных для серверов обновлений. Теперь с SW JProjects вы может создавать сервер обновлений не только для расширений Joomla, но и свои собственные. Например, вам нужно, чтобы структура данных сервера обновлений была другая и формат должен быть, например, не XML, а JSON. Формирование структуры данных для сервера обновлений расширений Joomla вынесено в отдельный плагин. Вы можете создать свой собственный плагин и реализовать в нём нужную вам структуру данных, добавив или наоборот исключив отображаемые данные. Сервер обновлений в компоненте по-прежнему отображает информацию о списке проектов и их версиях, о конкретном проекте и его changelog.Можно выбрать схему данных сервера обновлений глобально для всего компонента, выбрать другую схему данных для категории проектов, а так же выбрать схему в каждом проекте.

Разработчикам в качестве образца можно посмотреть плагин схемы данных для Joomla в составе компонента или же плагин-образец JSON-схемы на GitHub.
Группа плагинов swjprojects. Для нужд компонента создана группа плагинов swjprojects. В частности, в этой группе находится плагин структуры данных Joomla расширений для сервера обновлений.Изменение языковых констант. Изменены некоторые языковые константы в панели администратора. Если вы делали переопределение констант - переопределите их снова.👩‍💻 Joomla 6. Внесены изменения для корректной установки и работы компонента на Joomla 6. Компонент успешно протестирован на Joomla 6-beta2.Минимальная версия Joomla - 5. Подняты минимальные системные требования: Joomla 5.0.0 и PHP 8.1.
- Страница расширения👉 Плагин-образец кастомной JSON-схемы данных для сервера обновлений на GitHub.- GitHub расширения- Документация на GitHub- Joomla Extensions Directory#joomla #расширения

Как триггерить события для плагинов на манер Joomla 5+?В Joomla 6 должны удалить метод...

Как триггерить события для плагинов на манер Joomla 5+?В Joomla 6 должны удалить метод...

👩‍💻 Как триггерить события для плагинов на манер Joomla 5+?В Joomla 6 должны удалить метод triggerEvent(), с помощью которого раньше вызывались события для плагинов. Теперь чтобы в своём коде вызвать событие для плагина и получить от него результаты нужно:- создать объект класса события- передать в него параметры

use Joomla\CMS\Event\AbstractEvent;use Joomla\CMS\Factory;use Joomla\CMS\Plugin\PluginHelper;// Грузим плагины нужных группPluginHelper::importPlugin('system');// Создаём объект события$event = AbstractEvent::create('onAfterInitUniverse', [    'subject' => $this,    'data'    => $data, // какие-то данные    'article' => $article, // ещё материал вдовесок    'product' => $product, // и товаров подвезли]);// Триггерим событиеFactory::getApplication()->getDispatcher()->dispatch(    $event->getName(), // Тут можно строку передать 'onAfterInitUniverse'    $event);// Получаем результаты// В случае с AbstractEvent это может быть не 'result',// а что-то ещё - куда сами отдадите данные.// 2-й аргумент - значение по умолчанию, // если не получены результаты$results = $event->getArgument('result', []);
Плюсы такого подхода - вам не нужно запоминать порядок аргументов и проверять их наличие. Если вы написали свой класс события, то в плагине можно получать аргументы с помощью методов $event->getArticle(), $event->getData(), $event->getProduct() и подобными - реализуете сами под свои нужды. Если такой класс события написали, то создаёте экземпляр своего класса события и укажите его явно в аргументе eventClass
use Joomla\Component\MyComponent\Administrator\Event\MyCoolEvent;$event = MyCoolEvent::create('onAfterInitUniverse', [    'subject'    => $this,    'eventClass' => MyCoolEvent::class, // ваш класс события    'data'       => $data, // какие-то данные    'article'    => $article, // ещё материал вдовесок    'product'    => $product, // и товаров подвезли]);
Ожидаемо, что класс вашего события будет расширять AbsractEvent или другие классы событий Joomla.🙁 Есть неприятный нюанс - нельзя просто так вызывать событие и ничего не передать в аргументы. Аргумент subject обязательный. Но если вы всё-таки не хотите туда ничего передавать - передайте туда пустой stdClass или объект Joomla\registry\Registry.
@joomlafeed#joomla #php #webdev

0 Пользователей и 1 Гость просматривают эту тему.
  • 43 Ответов
  • 3531 Просмотров
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Проблемы с CSS
« : 30.07.2014, 16:16:10 »
Привет всем. Есть такой css:

img:hover
{
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease-in;
    
}

Здесь при поднесении мышки картина увеличивается, НО выходит за рамки исходного изображения!
Мне надо чтобы онa не выходилa за рамки. По моему понятно объяснил проблему. Помогите please.
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #1 : 30.07.2014, 16:23:38 »
и еще. Как моно сделать чтобы она была только для фоток со ссылками?
*

wfedin

  • Завсегдатай
  • 1273
  • 102 / 0
Re: Проблемы с CSS
« Ответ #2 : 30.07.2014, 16:26:40 »
Не совсем понял, но предположу
Код: css
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
*

wfedin

  • Завсегдатай
  • 1273
  • 102 / 0
Re: Проблемы с CSS
« Ответ #3 : 30.07.2014, 16:28:29 »
и еще. Как моно сделать чтобы она была только для фоток со ссылками?
Код: css
a > img:hover
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #4 : 30.07.2014, 16:36:28 »
Не совсем понял, но предположу
Код: css
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;

не сработало
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #5 : 30.07.2014, 16:36:43 »
Код: css
a > img:hover
это помогло
« Последнее редактирование: 30.07.2014, 16:46:01 от anar4ik »
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #7 : 30.07.2014, 17:00:22 »
Почему у вас нативная трансформация — только масштабирование, а вендорное для вебкитов — всё? О_о. Чтобы не выходило за рамки назначьте родителю overflow:hidden;
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #8 : 30.07.2014, 17:02:05 »
Код: html4strict
<a class="myclass" href="">
  <img src="" />
</a>

Код: css
.myclass {overflow:hidden;}
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #9 : 30.07.2014, 17:34:51 »
Код: html4strict
<a class="myclass" href="">
  <img src="" />
</a>

Код: css
.myclass {overflow:hidden;}

Прошу прошения, но куда их лепить?
*

wfedin

  • Завсегдатай
  • 1273
  • 102 / 0
Re: Проблемы с CSS
« Ответ #10 : 30.07.2014, 17:39:05 »
Прошу прошения, но куда их лепить?
Вы фрагмент кода с родительским блоком дайте сюда.
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #11 : 30.07.2014, 17:40:08 »
CSS в файл стилей. Туда же, где вы анимацию писали. А разметку я ж предположительную написал. Как у вас на сайте — не знаю.
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #12 : 30.07.2014, 17:43:57 »
Вы фрагмент кода с родительским блоком дайте сюда.
это blog_item.php
здесь вступительные изображения должны получить те функции


Код
<?php
/**
* @package Joomla.Site
* @subpackage com_content
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

// no direct access
defined('_JEXEC') or die;

// Create a shortcut for params.
$params = &$this->item->params;
$images = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.tooltip');
JHtml::core();

?>

<?php if ($this->item->state == 0) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
<h2>
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>

<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
<ul class="actions">
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon">
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon">
<?php echo JHtml::_('icon.edit', $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<?php if ($this->item->state == 0) : ?>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
<dl class="article-info">
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
<dd class="parent-category-name">
<?php $title = $this->escape($this->item->parent_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_parent_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
<dd class="category-name">
<?php $title = $this->escape($this->item->category_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
<dd class="modified">
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>
<?php
$img = json_decode($this->item->images);
$imgsrc = (isset($img->image_intro))?  $img->image_intro: '';
if ($imgsrc)
{
  echo '<div class="img-blog">';
  $h = 240; //Высота изображения
  $w = 380; //Ширина изображения
  $l = 0; //Отступ обрезки слева
  $t = 50; //Отступ обрезки сверху
  $path_parts = pathinfo($imgsrc);
  $file_thumb = $path_parts['dirname'].'/'.$path_parts['filename'].'_'.$h.'_'.$w.'.'.$path_parts['extension'];
  if (!file_exists($file_thumb) || filemtime($file_thumb) <= filemtime($imgsrc))
  {
    $image = new JImage($imgsrc);
    $new_image = $image->crop($w, $h, $l, $t, true, JImage::SCALE_INSIDE );
    $properties = $image->getImageFileProperties($imgsrc);
    switch ($properties->mime)
    {
      case 'image/jpeg':
      $type = IMAGETYPE_JPEG;
      break;
      case 'image/png':
      $type = IMAGETYPE_PNG;
      break;
      case 'image/gif':
      $type = IMAGETYPE_GIF;
      break;
    }
    $new_image->toFile($file_thumb, $type);
  }
$attr = getimagesize(JURI::base().$file_thumb);
echo '<a href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';
echo JHTML::_('image', $file_thumb, htmlspecialchars($img->image_intro_alt), $attr[3]).'</a></div>';
}
?>
<a class="myclass" href="">
  <img src="" />
</a>
<?php if ($params->get('show_readmore') && $this->item->readmore) :
if ($params->get('access-view')) :
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
else :
$menu = JFactory::getApplication()->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$link = new JURI($link1);
$link->setVar('return', base64_encode($returnURL));
endif;
?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php if ($params->get('show_hits')) : ?>
<dd class="hits">
<?php if ($params->get('show_publish_date')) : ?>
<dd class="published">
<a href="<?php echo $link; ?>"><?php echo $this->item->introtext; ?></a>
<p class="readmore">
<a href="<?php echo $link; ?>">
<?php if (!$params->get('access-view')) :
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get('show_readmore_title', 0)!= 0) :
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif;
elseif ($params->get('show_readmore_title', 0) == 0) :
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
else :
echo JText::_('COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?></a>  <?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>; <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>; <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
</p>
<?php endif; ?>
</dd>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #13 : 30.07.2014, 17:48:46 »
149-я строка. Замените

Код: php
echo '<a href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';

на

Код: php
echo '<a class="imgtransform" href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';

Далее, в стилях своих:

Код: css
.imgtransform img:hover {transform: scale(1.2);}
.imgtransform {overflow:hidden;}
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #14 : 30.07.2014, 21:10:29 »
149-я строка. Замените

Код: php
echo '<a href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';

на

Код: php
echo '<a class="imgtransform" href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';

Далее, в стилях своих:

Код: css
.imgtransform img:hover {transform: scale(1.2);}
.imgtransform {overflow:hidden;}
А куда CSS код добавить?
добавил в персонал.цсс . Нет результата
« Последнее редактирование: 30.07.2014, 21:19:53 от anar4ik »
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #15 : 30.07.2014, 21:47:15 »
А персонал.цсс подключен?
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #16 : 30.07.2014, 21:58:56 »
А персонал.цсс подключен?
да конечно само собой
*

wfedin

  • Завсегдатай
  • 1273
  • 102 / 0
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #18 : 30.07.2014, 22:08:29 »
Фрагмент исходного кода из браузера дайте.


[code=html4strict]<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="az-az" lang="az-az" dir="ltr" >
<head><script src="/media/dojo/20140730/312fb4a3835489df041db28af579a51e.js" type="text/javascript"></script>
  <base href="http://jmerinka.ru/film.html" />
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <meta name="keywords" content="filmer, kinolar, film, kino, baxmaq, izləmək, izlə, kino izlə, filmini izlə, bax, goster, kinosunu izlə, filmine bax, Filmine baxmaq, kinosuna baxmaq , kinosunu izlə" />
  <meta name="rights" content="Все права защищены Jmerinka®." />
  <meta name="robots" content="index, follow" />
  <meta name="description" content="Ən yeni xəbərlər musqilər, filmlər, oyunlar, proqramlar. Yumor, mp3, islam, şəkillər, video, klip, chat, teleserial, tanınmışlar, avto dünya, futbol, veb master, skriptlər,  e-kitab, dərsliklər, texnologiya, azərbaycan,wap , texnologiya xəbərləri, şou xəbərlər və daha çoxu burada..." />
  <meta name="generator" content="Joomla! - Open Source Content Management" />
  <title>Jmerinka Portal for all - Film</title>
  <link href="/templates/beez_20/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
  <link rel="stylesheet" href="/templates/system/css/system.css" type="text/css" />
  <link rel="stylesheet" href="/templates/beez_20/css/position.css" type="text/css" media="screen,projection"  />
  <link rel="stylesheet" href="/templates/beez_20/css/layout.css" type="text/css" media="screen,projection"  />
  <link rel="stylesheet" href="/templates/beez_20/css/print.css" type="text/css" media="print"  />
  <link rel="stylesheet" href="/templates/beez_20/css/personal.css" type="text/css" />
  <link rel="stylesheet" href="http://jmerinka.ru/modules/mod_bt_contentslider/tmpl/css/btcontentslider.css" type="text/css" />
  <link rel="stylesheet" href="/cache/mod_universal_ajaxlivesearch_theme/154/style.css" type="text/css" />
  <link rel="stylesheet" href="/modules/mod_improved_ajax_login/cache/179-langaz-AZ/6188fb3f611879c8b0c0b24995d36536.css" type="text/css" />
  <style type="text/css">
#btcontentslider158 .bt_handles_num{top: 12px !important;right: 5px !important}
      @media screen and (max-width: 480px){.bt-cs .bt-row{width:100%!important;}}
#btcontentslider102 .bt_handles{top: -1px !important;right: 5px !important}
      @media screen and (max-width: 480px){.bt-cs .bt-row{width:100%!important;}}
  </style>
  <script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
  <script src="/media/system/js/core.js" type="text/javascript"></script>
  <script src="/media/system/js/caption.js" type="text/javascript"></script>
  <script src="/media/system/js/mootools-more.js" type="text/javascript"></script>
  <script src="/templates/beez_20/javascript/md_stylechanger.js" type="text/javascript"></script>
  <script src="/templates/beez_20/javascript/hide.js" type="text/javascript"></script>
  <script src="http://jmerinka.ru/modules/mod_bt_contentslider/tmpl/js/jquery.min.js" type="text/javascript"></script>
  <script src="http://jmerinka.ru/modules/mod_bt_contentslider/tmpl/js/slides.js" type="text/javascript"></script>
  <script src="http://jmerinka.ru/modules/mod_bt_contentslider/tmpl/js/default.js" type="text/javascript"></script>
  <script src="http://jmerinka.ru/modules/mod_bt_contentslider/tmpl/js/jquery.easing.1.3.js" type="text/javascript"></script>
  <script src="/modules/mod_universal_ajaxlivesearch/engine/dojo.js" type="text/javascript"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js" type="text/javascript"></script>
  <script src="/modules/mod_universal_ajaxlivesearch/engine/engine.js" type="text/javascript"></script>
  <script type="text/javascript">
window.addEvent('load', function() {
            new JCaption('img.caption');
         });
window.addEvent('domready', function() {
         $$('.hasTip').each(function(el) {
            var title = el.get('title');
            if (title) {
               var parts = title.split('::', 2);
               el.store('tip:title', parts[0]);
               el.store('tip:text', parts[1]);
            }
         });
         var JTooltips = new Tips($$('.hasTip'), { maxTitleChars: 50, fixed: false});
      });
dojo.addOnLoad(function(){
      var ajaxSearch = new AJAXSearch({
        node : dojo.byId('offlajn-ajax-search'),
        productsPerPlugin : 3,
        searchRsWidth : 250,
        resultElementHeight : 66,
        minChars : 3,
        searchBoxCaption : 'Axtar...',
        noResultsTitle : 'Nəticə(0)...',
        noResults : 'Nəticə tapılmadı.',
        searchFormUrl : '/index.php',
        enableScroll : '1',
        showIntroText: '1',
        scount: '10',
        stext: 'Sorğunuz üzrə nəticə tapılmadı.',
        moduleId : '154',
        resultAlign : '0',
        targetsearch: '0',
        linktarget: '1',
        keypressWait: '500'
      })
    });
  </script>
  <script type='text/javascript'>
            /*<![CDATA[*/
               var jax_live_site = 'http://jmerinka.ru/index.php';
               var jax_token_var='3e99e9d4698e1cac5933f025ebb04a0d';
            /*]]>*/
            </script><script type="text/javascript" src="http://jmerinka.ru/plugins/system/azrul.system/pc_includes/ajax_1.5.pack.js"></script>
  <script type="text/javascript" src="http://jmerinka.ru/modules/mod_swmenufree/fix_wmode2transparent_swf.js"></script>
  <!-- start - swMenuFree 7.5_J2.5 javascript and CSS links -->
  <script type="text/javascript" src="http://jmerinka.ru/modules/mod_swmenufree/jquery.corner.js"></script>
  <script type="text/javascript" src="http://jmerinka.ru/modules/mod_swmenufree/DropDownMenuX_Packed.js"></script>
  <style type='text/css'>
<!--
#swmenu table,
#swmenu,
#swmenu tr,
#swmenu td{
border:0 !important;
}
#outerwrap {
 top: 0px !important ;
 left: 2px;
 border:0px none #CC2F7D  ;
 padding:0px 0px 0px 0px  !important;
 background-color: #116D8F !important ;
 display: block;
 position: relative;
 z-index: 99;
}
.ddmx a.item1,
.ddmx a.item1:hover,
.ddmx a.item1-active,
.ddmx a.item1-active:hover {
 padding: 5px 0px 0px 6px  !important ;
 font-size: 15px !important ;
 font-family: Times New Roman, Times, serif !important ;
 text-align: left !important ;
 font-weight: bold !important ;
 color: #EBEFF5  ;
 font-style: normal !important;
 text-decoration: none !important;
 text-transform: none !important;
 border: 0px none #F34AFF;
 display: block;
 white-space: normal;
 position: relative;
 z-index: 200;
 margin:0px 3px 0px 0px  ;
background-image:none !important;
 width:107px;
 height:27px;
 background-color: #1980A6  !important;
}
.ddmx td.item11.last a.item1-active,
.ddmx td.item11.last a.item1 {
 border: 0px none #F34AFF;
}
.ddmx a.item1-active,
.ddmx a.item1-active:hover ,
.ddmx .last a:hover,
.ddmx .acton.last a,
.ddmx a.item1:hover{
 white-space: normal;
 background-color: #163961 !important ;
background-image:none !important;
}
.ddmx .item11:hover,
.ddmx .item11.acton:hover,
.ddmx .item11.last:hover,
.ddmx .item11.acton a.item1,
.ddmx .item11.acton a:hover,
.ddmx .item11 a:hover,
.ddmx .item11.last a:hover,
.ddmx a.item1-active,
.ddmx a.item1-active:hover {
 color: #E1EBE4  ;
}
.ddmx .acton a.item1-active,
.ddmx .acton a.item1:hover,
.ddmx .acton a.item1 {
 white-space: normal;
background-image:none !important;
 background-color: #FFEC45 !important;
 color: #24111D !important ;
}
.ddmx a.item2,
.ddmx a.item2:hover,
.ddmx a.item2-active,
.ddmx a.item2-active:hover {
 padding: 3px 5px 0px 6px  !important ;
 font-size: 15px !important ;
 font-family: Times New Roman, Times, serif !important ;
 text-align: left !important ;
 font-weight: bold !important ;
 font-style: normal !important;
 text-decoration: none !important;
 text-transform: none !important;
 display: block;
 white-space: nowrap !important;
 height:23px;
 opacity:1;
 filter:alpha(opacity=100)
}
.ddmx a.item2-active ,
.ddmx a.item2 {
 width:102px !important;
background-image:none !important;
 background-color: #0F677D !important ;
 color: #FEFFF5 !important ;
 border-top: 0px solid #94FFB4 !important ;
 border-left: 0px solid #94FFB4 !important ;
 border-right: 0px solid #94FFB4 !important ;
}
.ddmx a.item2-active.last,
.ddmx a.item2.last {
 border-bottom: 0px solid #94FFB4 !important ;
 z-index:500;
}
.ddmx .section a.item2:hover,
.ddmx a.item2-active,
.ddmx a.item2-active:hover {
background-image:none !important;
 background-color: #ABB027 !important ;
 color: #0A1F14 !important ;
 border-top: 0px solid #94FFB4 !important ;
 border-left: 0px solid #94FFB4 !important ;
 border-right: 0px solid #94FFB4 !important ;
}
.ddmx .section {
 border: 0px none #061C1B ;
 position: absolute;
 visibility: hidden;
 display: block;
 z-index: -1;
}
.ddmx .inner_section {
 background-color: #0F677D ;
 display: block;
}
.ddmx .subsection a{
 width:107px;
 white-space:normal !important;
}
.ddmxframe {
 border: 0px none #061C1B !important ;
}
* HTML .ddmx td { position: relative; } /* ie 5.0 fix */
.ddmx .item2-active img,
.ddmx .item2 img,
.ddmx .item1-active img,
.ddmx .item1 img{
 border:none;
}

-->
</style>
  <!-- end - swMenuFree javascript and CSS links -->


<!--[if lte IE 6]>
<link href="/templates/beez_20/css/ieonly.css" rel="stylesheet" type="text/css" />
<style type="text/css">
#line {
  width:98% ;
}
.logoheader {
  height:200px;
}
#header ul.menu {
  display:block !important;
  width:98.2% ;
}
</style>
<![endif]-->

<!--[if IE 7]>
<link href="/templates/beez_20/css/ie7only.css" rel="stylesheet" type="text/css" />
<![endif]-->

<script type="text/javascript">
  var big ='72%';
  var small='53%';
  var altopen='açıqdır';
  var altclose='bağlıdır';
  var bildauf='/templates/beez_20/images/plus.png';
  var bildzu='/templates/beez_20/images/minus.png';
  var rightopen='Məlumatı göstər';
  var rightclose='Məlumatı gizlət';
  var fontSizeTitle='Şriftin ölçüsü';
  var bigger='Daha böyük';
  var reset='İlkin vəziyyətə gətir';
  var smaller='Daha kiçik';
  var biggerTitle='Şrifti böyüt';
  var resetTitle='Susmaya görə stili bərpa et';
  var smallerTitle='Kiçilt';
</script>
<meta name="google-site-verification" content="AsCMpbTL0UBoYCmOiUgNjX6vobwEpTjntDSQqB8tOqo" />
</head>

<body>
    <div id="fb-root"></div>
        <script>(function(d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/ru_RU/sdk.js#xfbml=1&appId=799341190087409&version=v2.0";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
<div id="all">
                <div id="header">
                                <div class="logoheader">
                                        <h1 id="logo">

                                                                                                                        Jmerinka                                                                                <span class="header1">
                                        Open Source Content Management                                        </span></h1>
                                </div><!-- end logoheader -->
                                        <ul class="skiplinks">
                                                <li><a href="#main" class="u2">Burax və məqalələrə keç</a></li>
                                                <li><a href="#nav" class="u2">Əsas səhifəyə və Daxil ola keç</a></li>
                                                                                        <li><a href="#additional" class="u2">Ətraflı məlumata keç</a></li>
                                                                                   </ul>
                                        <h2 class="unseen">Nav view search</h2>
                                        <h3 class="unseen">Naviqasiya</h3>
                                        <div id="btcontentslider102" style="display:none;width:auto" class="bt-cs">
         <div class="slides_container" style="width:auto;">

         <div class="slide" style="width:auto">
               <div class="bt-row bt-row-first"  style="width:33.3333333333%" >
            <div class="bt-inner">
                        
                              <a class="bt-title" target="_parent"
                  title="Kiraz Mevsimi - Dizi müziği"
                  href="/musiqi/turk/199-kiraz-mevsimi-dizi-müziği.html"> Kiraz Mevsimi - Dizi... </a><br />
                                             <div class="bt-center">
               <a target="_parent"
                  class="bt-image-link"
                  title="Kiraz Mevsimi - Dizi müziği" href="/musiqi/turk/199-kiraz-mevsimi-dizi-müziği.html">
                  <img class="hovereffect" src="http://s006.radikal.ru/i214/1407/4d/4f5792092c72.jpg" alt="Kiraz Mevsimi - Dizi müziği"  style="width:240px;" title="Kiraz Mevsimi - Dizi müziği" />
               </a>
               </div>
                              
               
               
            </div>
            <!--end bt-inner -->
         </div>
         <!--end bt-row -->
                           <div class="bt-row "  style="width:33.3333333333%" >
            <div class="bt-inner">
                        
                              <a class="bt-title" target="_parent"
                  title="Murat Dalkılıç – Daha Derine Full Albomu"
                  href="/musiqi/turk/198-murat-dalkılıç-–-daha-derine-full-albomu.html"> Murat Dalkılıç – Daha... </a><br />
                                             <div class="bt-center">
               <a target="_parent"
                  class="bt-image-link"
                  title="Murat Dalkılıç – Daha Derine Full Albomu" href="/musiqi/turk/198-murat-dalkılıç-–-daha-derine-full-albomu.html">
                  <img class="hovereffect" src="http://s020.radikal.ru/i717/1407/05/4eda618c95e0.jpg" alt="Murat Dalkılıç – Daha Derine Full Albomu"  style="width:240px;" title="Murat Dalkılıç – Daha Derine Full Albomu" />
               </a>
               </div>
                              
               
               
            </div>
            <!--end bt-inner -->
         </div>
         <!--end bt-row -->
                           <div class="bt-row bt-row-last"  style="width:33.3333333333%" >
            <div class="bt-inner">
                        
                              <a class="bt-title" target="_parent"
                  title="Irem Derici-Kalbimin Tek Sahibine"
                  href="/musiqi/turk/97-irem-derici-kalbimin-tek-sahibine.html"> Irem Derici-Kalbimin Tek Sahibine... </a><br />
                                             <div class="bt-center">
               <a target="_parent"
                  class="bt-image-link"
                  title="Irem Derici-Kalbimin Tek Sahibine" href="/musiqi/turk/97-irem-derici-kalbimin-tek-sahibine.html">
                  <img class="hovereffect" src="http://s012.radikal.ru/i320/1407/26/0d7ea2c22625.jpg" alt="Irem Derici-Kalbimin Tek Sahibine"  style="width:240px;" title="Irem Derici-Kalbimin Tek Sahibine" />
               </a>
               </div>
                              
               
               
            </div>
            <!--end bt-inner -->
         </div>
         <!--end bt-row -->
                           <div style="clear: both;"></div>

      </div>
      <!--end bt-main-item page   -->
         </div>
</div>
<!--end bt-container -->
<div style="clear: both;"></div>

<script type="text/javascript">   
   if(typeof(btcModuleIds)=='undefined'){var btcModuleIds = new Array();var btcModuleOpts = new Array();}
   btcModuleIds.push(102);
   btcModuleOpts.push({
         slideEasing : 'easeInSine',
         fadeEasing : 'easeInSine',
         effect: 'slide,slide',
         preloadImage: 'http://jmerinka.ru//modules/mod_bt_contentslider/tmpl/images/loading.gif',
         generatePagination: true,
         play: 5000,                  
         hoverPause: true,   
         slideSpeed : 400,
         autoHeight:false,
         fadeSpeed : 400,
         equalHeight:false,
         width: 'auto',
         height: 'auto',
         pause: 100,
         preload: true,
         paginationClass: 'bt_handles',
         generateNextPrev:false,
         prependPagination:true,
         touchScreen:0   });
</script>


<!--swMenuFree7.5_J2.5 mygosumenu by http://www.swmenupro.com-->
<table  id="outertable" align="center" class="outer"><tr><td><div id="outerwrap">
<table cellspacing="0" border="0" cellpadding="0" id="swmenu" class="ddmx"  >
<tr>
<td class='item11'>
<a href="/" class="item1">Baş səhifə</a><div class="section" style="border:0 !important;display:none;"></div>
</td>
<td class='item11'>
<a href="/shou-biznes.html" class="item1">Şou-Biznes</a><div class="section" style="border:0 !important;display:none;"></div>
</td>
<td class='item11'>
<a href="/texnologiya.html" class="item1">Texnologiya</a><div class="section" style="border:0 !important;display:none;"></div>
</td>
<td class='item11'>
<a href="/musiqi.html" class="item1">Musiqi</a><div class="section"  ><a href="/musiqi/azeri.html" class="item2 first"  style="" >Azəri MP3</a>
<a href="/musiqi/turk.html" class="item2"  style="" >Türk MP3</a>
<a href="/musiqi/xarici.html" class="item2 last"  style="" >Xarici MP3</a>
</div></td>
<td class='item11 acton'>
<a href="/film.html" class="item1">Film</a><div class="section"  ><a href="/film/azərbaycanca-dublyaj.html" class="item2 first"  style="" >Azərbaycanca</a>
<a href="/film/rusca-dublyaj.html" class="item2"  style="" >Rusca</a>
<div class="section"  ><a href="/film/rusca-dublyaj/ailevi.html" class="item2 first"  style="" >Ailəvi</a>
<a href="/film/rusca-dublyaj/doyush.html" class="item2"  style="" >Döyüş</a>
<a href="/film/rusca-dublyaj/dram.html" class="item2"  style="" >Dram</a>
<a href="/film/rusca-dublyaj/melodram.html" class="item2"  style="" >Melodram</a>
<a href="/film/rusca-dublyaj/macera.html" class="item2"  style="" >Macəra</a>
<a href="/film/rusca-dublyaj/fantastika.html" class="item2"  style="" >Fantastika</a>
<a href="/film/rusca-dublyaj/cizgi-filmi.html" class="item2"  style="" >Cizgi filmi</a>
<a href="/film/rusca-dublyaj/komediya.html" class="item2"  style="" >Komediya</a>
<a href="/film/rusca-dublyaj/qorxu.html" class="item2"  style="" >Qorxu</a>
<a href="/film/rusca-dublyaj/triller.html" class="item2"  style="" >Triller</a>
<a href="/film/rusca-dublyaj/serial.html" class="item2"  style="" >Serial</a>
<a href="/film/rusca-dublyaj/senedli.html" class="item2"  style="" >Sənədli</a>
<a href="/film/rusca-dublyaj/tarixi.html" class="item2 last"  style="" >Tarixi</a>
</div><a href="/film/turkce-dublyaj.html" class="item2 last"  style="" >Türkcə</a>
<div class="section"  ><a href="/film/turkce-dublyaj/ailevi.html" class="item2 first"  style="" >Ailəvi</a>
<a href="/film/turkce-dublyaj/doyush.html" class="item2"  style="" >Döyüş</a>
<a href="/film/turkce-dublyaj/dram.html" class="item2"  style="" >Dram</a>
<a href="/film/turkce-dublyaj/melodram.html" class="item2"  style="" >Melodram</a>
<a href="/film/turkce-dublyaj/macera.html" class="item2"  style="" >Macəra</a>
<a href="/film/turkce-dublyaj/fantastika.html" class="item2"  style="" >Fantastika</a>
<a href="/film/turkce-dublyaj/gizci-filmi.html" class="item2"  style="" >Gizci filmi</a>
<a href="/film/turkce-dublyaj/komediya.html" class="item2"  style="" >Komediya</a>
<a href="/film/turkce-dublyaj/qorxu.html" class="item2"  style="" >Qorxu</a>
<a href="/film/turkce-dublyaj/triller.html" class="item2"  style="" >Triller</a>
<a href="/film/turkce-dublyaj/serial.html" class="item2 last"  style="" >Serial</a>
</div></div></td>
<td class='item11'>
<a href="/proqram.html" class="item1">Proqram</a><div class="section" style="border:0 !important;display:none;"></div>
</td>
<td class='item11'>
<a href="/oyunlar.html" class="item1">Oyun</a><div class="section"  ><a href="/oyunlar/onlaynoyun.html" class="item2 first"  style="" >Onlayn</a>
<div class="section"  ><a href="/oyunlar/onlaynoyun/2d.html" class="item2 first"  style="" >2D</a>
<a href="/oyunlar/onlaynoyun/3d.html" class="item2 last"  style="" >3D</a>
</div><a href="/oyunlar/ofline-yukle.html" class="item2 last"  style="" >Ofline (yüklə)</a>
</div></td>
<td class='item11'>
<a href="/reklam.html" class="item1">Reklam</a><div class="section" style="border:0 !important;display:none;"></div>
</td>
<td class='item11 last'>
<a href="/biziml-laq.html" class="item1 last">Bizimlə əlaqə</a><div class="section" style="border:0 !important;display:none;"></div>
</td>
</tr>
</table></div></td></tr></table><hr style="display:block;clear:left;margin:-0.66em 0;visibility:hidden;" />
<script type="text/javascript">
<!--
function makemenu(){
var ddmx = new DropDownMenuX('swmenu');
ddmx.type = 'horizontal/down';
ddmx.delay.show = 0;
ddmx.iframename = 'ddmx';
ddmx.delay.hide = 201;
ddmx.effect = 'none';
ddmx.position.levelX.left = 0;
ddmx.position.levelX.top = 0;
ddmx.position.level1.left = 0;
ddmx.position.level1.top = 0;
ddmx.fixIeSelectBoxBug = false;
ddmx.autoposition = true;
ddmx.activesub='' ;
ddmx.init();
}
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", makemenu, false );
else if ( typeof window.attachEvent != "undefined" ) {
window.attachEvent( "onload", makemenu );
}
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
makemenu()
}
}  
else  {
window.onload = makemenu();
} }
//-->
</script>  
<script type="text/javascript">
<!--
jQuery('#swmenu .item1').corner('round     1px');
jQuery('#swmenu').parents().css('overflow','visible');
jQuery('html').css('overflow','auto');
jQuery('#swmenu').parents().css('z-index','1');
jQuery('#swmenu').css('z-index','501');
//-->
</script>

<!--End swMenuFree menu module-->

                                        <div id="line">
                                        <h3 class="unseen">Axtar</h3>
                                        

<div class="custom"  >
   <p><a href="http://jmerinka.ru/"><img style="border: 0px solid #000000; float: left;" src="http://s45.radikal.ru/i109/1407/71/c0ff1eac2c3a.jpg" alt="" /></a></p></div>
          
<div id="offlajn-ajax-search">
  <div class="offlajn-ajax-search-container">
  <form id="search-form" action="/component/search/" method="get" onSubmit="return false;">
    <div class="offlajn-ajax-search-inner">
            <input type="text" name="searchword" id="search-area" value="" autocomplete="off" />
        <input type="hidden" name="option" value="com_search" />
              <div id="search-area-close"></div>
      <div id="ajax-search-button"><div class="magnifier"></div></div>
      <div class="ajax-clear"></div>
    </div>
  </form>
  <div class="ajax-clear"></div>
  </div>
</div>




<div id="mod_improved_ajax_login-179">

      <a id="loginBtn" class="selectBtn" onclick="return false" href="/component/users/?view=login">
                <span class="loginBtn leftBtn">
             Daxil ol          </span><span class="loginBtn rightBtn">&nbsp;<img src="/modules/mod_improved_ajax_login/themes/elegant/images/arrow.png" alt="\/" width="10" height="7"/>&nbsp;</span>
          </a>
  
              <a id="regBtn" class="selectBtn " href="/component/users/?view=registration">
                <span class="loginBtn leftBtn">
             Qeydiyyat          </span><span class="loginBtn rightBtn">&nbsp;<img src="/modules/mod_improved_ajax_login/themes/elegant/images/arrow.png" alt="\/" width="10" height="7"/>&nbsp;</span>
              </a>
      
   <div id="loginWnd">
    <div class="loginWndInside">
      <div id="upArrow">
        <div style="position:relative">
               <div class="upArrowOutside"></div>
               <div class="upArrowInside"></div>
        </div>
         </div>
         <button id="xBtn" class="closeBtn loginBtn"><img src="/modules/mod_improved_ajax_login/themes/elegant/images/x.png" alt="x" width="8" height="10"/></button>
      <div id="logLyr">

  
   <form action="/component/improved_ajax_login/?task=login" method="post" name="login" id="loginForm" class="">
          <h1 class="loginH1">Giriş</h1>
    
    
    <span class="loginBtn submitBtn"><span class="btnIco facebookIco">&nbsp;</span>Facebook</span>
    <div class="loginBrd"><div class="loginOr">vəya</div></div>

      <input id="userTxt" class="loginTxt" name="username" type="text"/>
    <input id="passTxt" class="loginTxt" name="passwd" type="password"/>
    <button class="loginBtn submitBtn" id="submitBtn"><span><span class="waitAnim"></span>Daxil ol</span></button>

          <label class="checkLbl" for="keepSigned">
      <span class="checkBox active"></span>
         <input id="keepSigned" name="remember" type="checkbox" checked="checked" style="display:none"/>
            &nbsp;Yadda saxla         </label>
      
      <div class="forgetDiv">
         <a class="forgetLnk" href="/component/users/?view=reset">Şifrəni unutdun?</a>
            </div>

      <input type="hidden" name="return" value="L2ZpbG0uaHRtbA==" />
    <input type="hidden" name="ajax" value="0" />
      <input type="hidden" name="3e99e9d4698e1cac5933f025ebb04a0d" value="1" />   </form>

  
  
</div>      <div id="regLyr">
  <h1 class="loginH1">
    Qeydiyyatdan keç      </h1>

  
    <span class="loginBtn submitBtn"><span class="btnIco facebookIco">&nbsp;</span>Facebook</span>
    <div class="loginBrd"><div class="loginOr">vəya</div></div>

   <form action="/component/improved_ajax_login/?task=register" method="post" name="register" id="regForm">
    <div class="columnL">
      <label class="smallTxt" for="nameReg">Ad <span class="req">*</span></label>
         <input id="nameReg" class="loginTxt regTxt required" name="name" type="text" title="Adınızı daxil edin"
      /><div style="display:none">Daxil etdiyiniz ad yalnışdır.</div>
    </div>
    <div class="columnR">
      <label class="smallTxt" for="userReg">İstifadəçi adı <span class="req">*</span></label>
      <div class="waitAnim" style="margin:6px 7px; display:none">
      </div><input id="userReg" class="loginTxt regTxt required" name="username" type="text" title="Sayta daxil olmaq istədiyiniz istifadəçi adını daxil edin"
      /><div style="display:none">Zəhmət olmasa, düzgün istifadəçi adını daxil edin. Boşluq olmamalıdır, azı 2 simvol olmalı və bu simvollar <strong>olmamalıdır</strong>: &lt; > \ " ' % ; ( ) &</div>
    </div>
    <div class="columnL">
      <label class="smallTxt" for="passReg">Şifrə <span class="req">*</span></label>
      <label class="smallTxt" for="passReg" id="passStrongness"></label>
      <input id="passReg" class="loginTxt regTxt required" name="passwd" type="password" title="Şifrəni daxil edin. Şifrənin uzunluğu 5 və daha artıq simvoldan ibarəy olmalıdır"
      autocomplete="off" /><div style="display:none">Şifrə yalnışdır.</div>
      <label id="strongFields" for="passReg">
        <i class="empty strongField"></i><i class="empty strongField"></i><i class="empty strongField"></i><i class="empty strongField"></i><i class="empty strongField"></i>
      </label>
    </div>
    <div class="columnR">
      <label class="smallTxt" for="pass2Reg">Şifrəni təkrarla <span class="req">*</span></label>
      <input id="pass2Reg" class="loginTxt regTxt required" name="passwd2" type="password" title="Şifrəni təsdiq et"
      autocomplete="off" /><div style="display:none">Daxil etdiyiniz şifrələr uyğun gəlmir. Zəhmət olmasa, arzuladığınız şifrəni şifrə və təsdiq et sətrinə daxil edin.</div>
    </div>
    <div class="columnL">
      <label class="smallTxt" for="mailReg">Email ünvanı <span class="req">*</span></label>
      <div class="waitAnim" style="margin:6px 7px; display:none">
      </div><input id="mailReg" class="loginTxt regTxt required" name="email" type="text" title="Email ünvanını daxil edin"
      /><div style="display:none">Yalnış email ünvanı</div>
    </div>
    <div class="columnR">
      <label class="smallTxt" for="mail2Reg">Email ünvanını təsdiq et: <span class="req">*</span></label>
      <div class="waitAnim" style="margin:6px 7px; display:none">
      </div><input id="mail2Reg" class="loginTxt regTxt required" name="email2" type="text" title="Qeyd etdiyiniz email ünvanını təsdiq edin"
      /><div style="display:none">Email ünvanları düz gəlmir. Zəhmət olmasa email ünvanınızı ünvan və təsdiq et sətrlərinə daxil edin.</div>
    </div>

        <div class="columnL">
      <span class="smallTxt" id="regRequired">* <strong class="red">*</strong> Mütləq doldurun</span>
    </div>
    <button class="loginBtn submitBtn" id="submitReg"><span><span class="waitAnim"></span>Qeydiyyat</span></button>
    
    <input type="hidden" name="3e99e9d4698e1cac5933f025ebb04a0d" value="1" />    <input type="hidden" name="ajax" value="" />
    <input type="hidden" name="socialType" value="" />
    <input type="hidden" name="socialId" value="" />
   </form>

  <br style="clear:both" />
  </div>    </div>
   </div>

</div>
                                        </div> <!-- end line -->

                        </div><!-- end header -->
                        <div id="contentarea2">
                                        <div id="breadcrumbs">

                                                        
                                          <div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/ru_RU/sdk.js#xfbml=1&version=v2.0";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

                                        </div>

                                        
                                        <div id="wrapper" >

                                                <div id="main">

                                                                                                        
<div id="system-message-container">
</div>
                                                        <div class="blog">

   







         <div class="items-row cols-2 row-0">
      <div class="item column-1">
      
<h2>
<a href="/film/rusca-dublyaj/cizgi-filmi/376-kruds-ailəsi-2013.html">
Kruds ailəsi (2013)</a>
</h2>





<dl class="article-info">
<dt class="article-info-term">Ətraflı</dt>
</dl>
<dd class="hits">
<a href="/film/rusca-dublyaj/cizgi-filmi/376-kruds-ailəsi-2013.html"><p style="text-align: left;"><img style="float: left;" src="http://s45.radikal.ru/i109/1407/2e/ef510be85301.jpg" alt="" width="180" height="260" /><span style="color: #0000ff;"><strong>&nbsp;Dublyaj: Rus</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Janr: Fantastika, Ailəvi, Macəra</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Büdcə: 135 mln $</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Ölkə: ABŞ</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Rejissor: Kirk de Mikko, Kris Sanders</strong></span></p>
</a>
<p class="readmore">
<a href="/film/rusca-dublyaj/cizgi-filmi/376-kruds-ailəsi-2013.html">
Ardını oxu...</a> Baxılıb: 2     </p>

</dd>

<div class="item-separator"></div>
   </div>
               <div class="item column-2">
      
<h2>
<a href="/film/rusca-dublyaj/fantastika/375-meymunlar-planeti-inqilab-2014.html">
Meymunlar planeti. İnqilab (2014)</a>
</h2>





<dl class="article-info">
<dt class="article-info-term">Ətraflı</dt>
</dl>
<dd class="hits">
<a href="/film/rusca-dublyaj/fantastika/375-meymunlar-planeti-inqilab-2014.html"><p style="text-align: left;"><img style="float: left;" src="http://s019.radikal.ru/i619/1407/10/36a3a51fc9bd.jpg" alt="" width="180" height="260" /><span style="color: #0000ff;"><strong>&nbsp;Dublyaj: Rus</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Janr: Fantastika, Döyüş, Dram</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Büdcə: 170 mln $</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Ölkə: ABŞ</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Rejissor: Mett Rivz</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Aktyorlar: Endi Serkis, Geyson Klark, Qarri Oldman və b.</strong></span></p>
</a>
<p class="readmore">
<a href="/film/rusca-dublyaj/fantastika/375-meymunlar-planeti-inqilab-2014.html">
Ardını oxu...</a> Baxılıb: 0     </p>

</dd>

<div class="item-separator"></div>
   </div>
                  <span class="row-separator"></span>
            </div>

                  <div class="items-row cols-2 row-1">
      <div class="item column-1">
      
<h2>
<a href="/film/rusca-dublyaj/senedli/374-dünyanın-80-möcüzəsi-2005.html">
Dünyanın 80 möcüzəsi (2005)</a>
</h2>





<dl class="article-info">
<dt class="article-info-term">Ətraflı</dt>
</dl>
<dd class="hits">
<a href="/film/rusca-dublyaj/senedli/374-dünyanın-80-möcüzəsi-2005.html"><p style="text-align: left;"><img style="float: left;" src="http://s45.radikal.ru/i109/1407/55/48e2711d40fa.jpg" alt="" width="180" height="260" /><span style="color: #0000ff;"><strong>&nbsp;Dublyaj: Rus;&nbsp;&nbsp;İstehsal: BBC</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;1-ci hissə: Perudan Braziliyaya</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;2-ci hissə: Meksikadan ABŞ-ya</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;3-cü hissə: Avstraliyadan Kambodjaya</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;4-cü hissə: Yaponiyadan Çinə</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;5-ci hissə: Hindistandan Şri-lankaya&nbsp;</strong></span></p>
</a>
<p class="readmore">
<a href="/film/rusca-dublyaj/senedli/374-dünyanın-80-möcüzəsi-2005.html">
Ardını oxu...</a> Baxılıb: 0     </p>

</dd>

<div class="item-separator"></div>
   </div>
               <div class="item column-2">
      
<h2>
<a href="/film/rusca-dublyaj/dram/373-həyat-gözəldir-50-50-2011.html">
Həyat gözəldir 50/50 (2011)</a>
</h2>





<dl class="article-info">
<dt class="article-info-term">Ətraflı</dt>
</dl>
<dd class="hits">
<a href="/film/rusca-dublyaj/dram/373-həyat-gözəldir-50-50-2011.html"><p style="text-align: left;"><img style="float: left;" src="http://i016.radikal.ru/1407/89/57c31db2c99a.jpg" alt="" width="180" height="260" /><span style="color: #0000ff;"><strong>&nbsp;Dublyaj: Rus</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Janrı: Dram, Komediya</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Büdcə: 8 mln $</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Ölkə: ABŞ</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Rejissor: Gonatan Levin</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Aktyorlar: Gosef Qordon-Levit, Set Rogen, Anna Kendrik və b.</strong></span></p>
</a>
<p class="readmore">
<a href="/film/rusca-dublyaj/dram/373-həyat-gözəldir-50-50-2011.html">
Ardını oxu...</a> Baxılıb: 9     </p>

</dd>

<div class="item-separator"></div>
   </div>
                  <span class="row-separator"></span>
            </div>

                  <div class="items-row cols-2 row-2">
      <div class="item column-1">
      
<h2>
<a href="/film/rusca-dublyaj/doyush/372-maço-və-çoxbilmiş-2012.html">
Maço və çoxbilmiş (2012)</a>
</h2>





<dl class="article-info">
<dt class="article-info-term">Ətraflı</dt>
</dl>
<dd class="hits">
<a href="/film/rusca-dublyaj/doyush/372-maço-və-çoxbilmiş-2012.html"><p style="text-align: left;"><img style="float: left;" src="http://i079.radikal.ru/1407/04/77401554bda5.jpg" alt="" width="180" height="260" />&nbsp;<span style="color: #0000ff;"><strong>Dublyaj: Rus</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Janrı: Döyüş, Komediya</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Büdcə: 42 mln$</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Ölkə: ABŞ</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Rejissor: Fil Lord</strong></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><strong>&nbsp;Aktyorlar: Gona Hill, Çeninq Tatum, Bri Larson, Deyv Franko &nbsp;və b.</strong></span></p>
</a>
<p class="readmore">
<a href="/film/rusca-dublyaj/doyush/372-maço-və-çoxbilmiş-2012.html">
Ardını oxu...</a> Baxılıb: 2     </p>

</dd>

<div class="item-separator"></div>
   </div>
               <div class="item column-2">
      
<h2>
<a href="/film/rusca-dublyaj/doyush/371-məğlubedilməzlər-3-2014.html">
Məğlubedilməzlər 3(2014)</a>
</h2>





<dl class="article-info">
<dt class="article-info-term">Ətraflı</dt>
</dl>
<dd class="hits">
<a href="/film/rusca-dublyaj/doyush/371-məğlubedilməzlər-3-2014.html"><p style="text-align: left;"><img style="float: left;" src="http://s018.radikal.ru/i528/1407/12/4fab120c3565.jpg" alt="" width="180" height="260" />&nbsp;<span style="color: #0000ff;"><span style="margin: 0px; padding: 0px; font-size: 10pt;"><strong style="margin: 0px 0px 1px; padding: 0px; line-height: 21.760000228881836px;"><strong style="margin: 0px 0px 1px; padding: 0px;"><strong style="margin: 0px; padding: 0px;">Dublyaj: Rus</strong></strong></strong></span></span></p>
<p style="margin: 8px 0px; padding: 0px; line-height: 1.7em; color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; text-align: justify;"><span style="color: #0000ff;"><strong><span style="margin: 0px; padding: 0px; font-size: 10pt;">&nbsp;&nbsp;Budcəsi: 180 mln$</span></strong></span></p>
<p style="margin: 8px 0px; padding: 0px; line-height: 1.7em; color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; text-align: justify;"><span style="color: #0000ff;"><strong><span style="margin: 0px; padding: 0px; font-size: 10pt;">&nbsp;&nbsp;Ölkə: ABŞ</span></strong></span></p>
<p style="margin: 8px 0px; padding: 0px; line-height: 1.7em; color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; text-align: justify;"><span style="color: #0000ff;"><strong><span style="margin: 0px; padding: 0px; font-size: 10pt;">&nbsp;&nbsp;Janrı: Döyüş, Triller, Macəra<br style="margin: 0px; padding: 0px;" /></span></strong></span></p>
<p style="margin: 8px 0px; padding: 0px; line-height: 1.7em; color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; text-align: justify;"><span style="color: #0000ff;"><strong><span style="margin: 0px; padding: 0px; font-size: 10pt;">&nbsp; Rejissor: Patrik Xyuz</span></strong></span></p>
<p style="margin: 8px 0px; padding: 0px; line-height: 1.7em; color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; text-align: justify;"><span style="color: #0000ff;"><strong><span style="margin: 0px; padding: 0px; font-size: 10pt;">&nbsp; Aktyorlar: Silvester Stalone, Geyson Steytem, Jan-Klod Van Dam, Arnold Şvarsneqer, Antonio Banderas, Mell Qibson və b.</span></strong></span></p>
</a>
<p class="readmore">
<a href="/film/rusca-dublyaj/doyush/371-məğlubedilməzlər-3-2014.html">
Ardını oxu...</a> Baxılıb: 1     </p>

</dd>

<div class="item-separator"></div>
   </div>
                  <span class="row-separator"></span>
            </div>

                  <div class="items-row cols-2 row-3">
      <div class="item column-1">
      
&
« Последнее редактирование: 30.07.2014, 22:11:45 от Shustry »
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #19 : 30.07.2014, 22:15:00 »
В исходном коде нет imgtransform. Возможно не тот файл правили.
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #20 : 30.07.2014, 22:23:42 »
В исходном коде нет imgtransform. Возможно не тот файл правили.
уже файл не тот
после я ее изменил
теперь blog_item.php такой
Код
<?php
/**
* @package Joomla.Site
* @subpackage com_content
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

// no direct access
defined('_JEXEC') or die;

// Create a shortcut for params.
$params = &$this->item->params;
$images = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.tooltip');
JHtml::core();

?>

<?php if ($this->item->state == 0) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
<h2>
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>

<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
<ul class="actions">
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon">
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon">
<?php echo JHtml::_('icon.edit', $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<?php if ($this->item->state == 0) : ?>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
<dl class="article-info">
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
<dd class="parent-category-name">
<?php $title = $this->escape($this->item->parent_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_parent_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
<dd class="category-name">
<?php $title = $this->escape($this->item->category_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
<dd class="modified">
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro))? $params->get('float_intro') : $images->float_intro; ?>
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
<img
<?php if ($images->image_intro_caption):
echo 'class="mystyle"'.' title="' .htmlspecialchars($images->image_intro_caption).'"';
endif; ?>
src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>"/>
</div>
<?php endif; ?>
<?php if ($params->get('show_readmore') && $this->item->readmore) :
if ($params->get('access-view')) :
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
else :
$menu = JFactory::getApplication()->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$link = new JURI($link1);
$link->setVar('return', base64_encode($returnURL));
endif;
?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php if ($params->get('show_hits')) : ?>
<dd class="hits">
<?php if ($params->get('show_publish_date')) : ?>
<dd class="published">
<a href="<?php echo $link; ?>"><?php echo $this->item->introtext; ?></a>
<p class="readmore">
<a href="<?php echo $link; ?>">
<?php if (!$params->get('access-view')) :
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get('show_readmore_title', 0)!= 0) :
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif;
elseif ($params->get('show_readmore_title', 0) == 0) :
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
else :
echo JText::_('COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?></a>  <?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>; <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>; <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
</p>
<?php endif; ?>
</dd>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #21 : 30.07.2014, 22:25:45 »
В этом тоже не imgtransform.
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #22 : 31.07.2014, 00:05:59 »
В этом тоже не imgtransform.
там вместо imgtransform mystyle. И в CSS так же
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #24 : 31.07.2014, 00:49:04 »
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #25 : 31.07.2014, 00:58:47 »
У вас там неверно сделано. На 119-й строке вы открываете Img. Затем ниже, прям в него вставляете начало ссылки. Ссылку не закрываете, а пишите окончание img. Выложите ещё раз листинг того, что наделали.
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #26 : 31.07.2014, 01:08:39 »
У вас там неверно сделано. На 119-й строке вы открываете Img. Затем ниже, прям в него вставляете начало ссылки. Ссылку не закрываете, а пишите окончание img. Выложите ещё раз листинг того, что наделали.
Код
<?php
/**
* @package Joomla.Site
* @subpackage com_content
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

// no direct access
defined('_JEXEC') or die;

// Create a shortcut for params.
$params = &$this->item->params;
$images = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.tooltip');
JHtml::core();

?>

<?php if ($this->item->state == 0) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
<h2>
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>

<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
<ul class="actions">
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon">
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon">
<?php echo JHtml::_('icon.edit', $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<?php if ($this->item->state == 0) : ?>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
<dl class="article-info">
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
<dd class="parent-category-name">
<?php $title = $this->escape($this->item->parent_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_parent_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
<dd class="category-name">
<?php $title = $this->escape($this->item->category_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
<dd class="modified">
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro))? $params->get('float_intro') : $images->float_intro; ?>
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
<img
<?php if ($images->image_intro_caption):
echo '<a class="imgtransform" href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';
endif; ?>
src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>"/>
</div>
<?php endif; ?>
<?php if ($params->get('show_readmore') && $this->item->readmore) :
if ($params->get('access-view')) :
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
else :
$menu = JFactory::getApplication()->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$link = new JURI($link1);
$link->setVar('return', base64_encode($returnURL));
endif;
?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php if ($params->get('show_hits')) : ?>
<dd class="hits">
<?php if ($params->get('show_publish_date')) : ?>
<dd class="published">
<a href="<?php echo $link; ?>"><?php echo $this->item->introtext; ?></a>
<p class="readmore">
<a href="<?php echo $link; ?>">
<?php if (!$params->get('access-view')) :
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get('show_readmore_title', 0)!= 0) :
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif;
elseif ($params->get('show_readmore_title', 0) == 0) :
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
else :
echo JText::_('COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?></a>  <?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>; <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>; <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
</p>
<?php endif; ?>
</dd>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>

можете ли вы уже готовую версию мне прислать?
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #27 : 31.07.2014, 01:14:12 »
Код: php
<?php
/**
* @package Joomla.Site
* @subpackage com_content
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

// no direct access
defined('_JEXEC') or die;

// Create a shortcut for params.
$params = &$this->item->params;
$images = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.tooltip');
JHtml::core();

?>

<?php if ($this->item->state == 0) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
<h2>
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>

<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
<ul class="actions">
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon">
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon">
<?php echo JHtml::_('icon.edit', $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<?php if ($this->item->state == 0) : ?>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
<dl class="article-info">
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
<dd class="parent-category-name">
<?php $title = $this->escape($this->item->parent_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_parent_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
<dd class="category-name">
<?php $title = $this->escape($this->item->category_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
<dd class="modified">
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro))? $params->get('float_intro') : $images->float_intro; ?>
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
<?php echo '<a class="imgtransform" href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';?>
<img src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" />
</a></div>
<?php endif; ?>

<?php if ($params->get('show_readmore') && $this->item->readmore) :
if ($params->get('access-view')) :
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
else :
$menu = JFactory::getApplication()->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$link = new JURI($link1);
$link->setVar('return', base64_encode($returnURL));
endif;
?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php if ($params->get('show_hits')) : ?>
<dd class="hits">
<?php if ($params->get('show_publish_date')) : ?>
<dd class="published">
<a href="<?php echo $link; ?>"><?php echo $this->item->introtext; ?></a>
<p class="readmore">
<a href="<?php echo $link; ?>">
<?php if (!$params->get('access-view')) :
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get('show_readmore_title', 0)!= 0) :
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif;
elseif ($params->get('show_readmore_title', 0) == 0) :
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
else :
echo JText::_('COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?></a>  <?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>; <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>; <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
</p>
<?php endif; ?>
</dd>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
*

anar4ik

  • Захожу иногда
  • 58
  • 0 / 3
Re: Проблемы с CSS
« Ответ #28 : 31.07.2014, 01:28:37 »
Код: php
<?php
/**
* @package Joomla.Site
* @subpackage com_content
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

// no direct access
defined('_JEXEC') or die;

// Create a shortcut for params.
$params = &$this->item->params;
$images = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.tooltip');
JHtml::core();

?>

<?php if ($this->item->state == 0) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
<h2>
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>

<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
<ul class="actions">
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon">
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon">
<?php echo JHtml::_('icon.edit', $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<?php if ($this->item->state == 0) : ?>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
<dl class="article-info">
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
<dd class="parent-category-name">
<?php $title = $this->escape($this->item->parent_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_parent_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
<dd class="category-name">
<?php $title = $this->escape($this->item->category_title);
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)). '">' . $title . '</a>'; ?>
<?php if ($params->get('link_category')) : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
<dd class="modified">
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<?php if (!$params->get('show_intro')) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro))? $params->get('float_intro') : $images->float_intro; ?>
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
<?php echo '<a class="imgtransform" href="'.JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)).'">';?>
<img src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" />
</a></div>
<?php endif; ?>

<?php if ($params->get('show_readmore') && $this->item->readmore) :
if ($params->get('access-view')) :
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
else :
$menu = JFactory::getApplication()->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$link = new JURI($link1);
$link->setVar('return', base64_encode($returnURL));
endif;
?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
<dd class="createdby">
<?php $author = $this->item->author; ?>
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid), $author)); ?>

<?php else :?>
<?php if ($params->get('show_hits')) : ?>
<dd class="hits">
<?php if ($params->get('show_publish_date')) : ?>
<dd class="published">
<a href="<?php echo $link; ?>"><?php echo $this->item->introtext; ?></a>
<p class="readmore">
<a href="<?php echo $link; ?>">
<?php if (!$params->get('access-view')) :
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get('show_readmore_title', 0)!= 0) :
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif;
elseif ($params->get('show_readmore_title', 0) == 0) :
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
else :
echo JText::_('COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?></a>  <?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>; <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>; <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
</p>
<?php endif; ?>
</dd>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
</dl>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>

Опять не вышло. Че делать то?
*

Shustry

  • Moderator
  • 6434
  • 745 / 3
Re: Проблемы с CSS
« Ответ #29 : 31.07.2014, 01:32:16 »
Почему не вышло? Разметка на странице появилась?
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

Проблемы с валидатором

Автор 13RUS

Ответов: 10
Просмотров: 1280
Последний ответ 18.02.2016, 21:29:42
от 13RUS
Проблемы с корзиной при активации чпу

Автор Стас Сергеевич

Ответов: 1
Просмотров: 1092
Последний ответ 17.10.2015, 13:16:27
от Стас Сергеевич
Проблемы с установкой UIKit

Автор Юли

Ответов: 5
Просмотров: 4332
Последний ответ 10.09.2015, 16:50:34
от apirat
Проблемы с меню

Автор Никонор

Ответов: 45
Просмотров: 3866
Последний ответ 26.08.2015, 08:51:49
от Никонор
IE11 и T3 BS3 Joomla 3.3 - проблемы с разметкой

Автор terveg

Ответов: 4
Просмотров: 1623
Последний ответ 15.09.2014, 23:35:26
от terveg