Новости 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 Гость просматривают эту тему.
  • 7 Ответов
  • 2657 Просмотров
*

aser

  • Осваиваюсь на форуме
  • 48
  • 2 / 0
модуль
« : 13.08.2009, 21:47:01 »
Добрый вечер !
У меня возникла такая проблема...
Мне необходимо изменить размер модуля в позиции header 2 пробовал увеличить в самом модуле (есть установки) но он не реагирует т.к. в шаблоне (я так подозреваю) установлены чёткие размеры этой позиции..
Подскажите где их можно изменить...за ранее СПС!
*

profiX0808

  • Захожу иногда
  • 497
  • 70 / 0
Re: модуль
« Ответ #1 : 13.08.2009, 22:00:03 »
Добрый вечер !
У меня возникла такая проблема...
Мне необходимо изменить размер модуля в позиции header 2 пробовал увеличить в самом модуле (есть установки) но он не реагирует т.к. в шаблоне (я так подозреваю) установлены чёткие размеры этой позиции..
Подскажите где их можно изменить...за ранее СПС!
ну так смотреть в "индекс.пхп" вашего шаблона и в "цсс"
*

aser

  • Осваиваюсь на форуме
  • 48
  • 2 / 0
Re: модуль
« Ответ #2 : 14.08.2009, 07:04:41 »
Или у мя уже не слушаются глаза ...или я уже не знаю...прорыл весь код и что-то не нашол именно то что мне нужно...
Код
<?php
// no direct access
defined ( '_JEXEC' ) or die ( 'Restricted index access' );
define ( 'YOURBASEPATH', dirname (__FILE__) );
require ( YOURBASEPATH.DS."rt_styleswitcher.php");
JHTML::_( 'behavior.mootools' );

$live_site         = $mainframe->getCfg ('live_site');
$template_path = $this->baseurl . '/templates/' .  $this->template;

$default_style = $this->params->get ("defaultStyle", "style11");
$enable_ie6warn             = ($this->params->get ("enableIe6warn", 1)  == 0)?"false":"true";
$font_family                = $this->params->get ("fontFamily", "helvetica");
$enable_fontspans           = ($this->params->get ("enableFontspans", 1)  == 0)?"false":"true";
$show_fontbuttons           = ($this->params->get ("showFontButtons", 1)  == 0)?"false":"true";
$template_width = $this->params->get ("templateWidth", "962");
$leftcolumn_width = $this->params->get ("leftcolumnWidth", "210");
$rightcolumn_width = $this->params->get ("rightcolumnWidth", "210");
$inset_width = $this->params->get ("insetWidth", "290");
$splitmenu_col = $this->params->get ("splitmenuCol", "rightcol");
$menu_name = $this->params->get ("menuName", "mainmenu");
$menu_type = $this->params->get ("menuType", "moomenu");
$default_font = $this->params->get ("defaultFont", "default");
$show_breadcrumbs = ($this->params->get ("showBreadcrumbs", 0)  == 0)?"false":"true";

// moomenu options
$moo_bgiframe     = ($this->params->get ("moo_bgiframe'","0") == 0)?"false":"true";
$moo_delay       = $this->params->get ("moo_delay", "500");
$moo_duration     = $this->params->get ("moo_duration", "600");
$moo_fps           = $this->params->get ("moo_fps", "200");
$moo_transition   = $this->params->get ("moo_transition", "Sine.easeOut");

require (YOURBASEPATH . DS . "rt_styleloader.php");


?>
<!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">
<head>
<jdoc:include type="head" />
<?php
require (YOURBASEPATH . DS . "rt_utils.php");
require (YOURBASEPATH . DS . "rt_head_includes.php");
?>
</head>
<body id="ff-<?php echo $fontfamily; ?>" class="<?php echo $tstyle; ?> <?php echo $fontstyle; ?>">
<!-- begin header -->
<div id="header">
<div class="wrapper">
<a href="<?php echo $this->baseurl; ?>" class="nounder"><img src="<?php echo $template_path; ?>/images/blank.gif" border="0" alt="" id="logo" class="png" /></a>
<!-- begin top panel -->
<?php if ($this->countModules ('top')) : ?>
<div id="toppanel-container" class="wrapper">
<div id="topmod">
<div class="wrapper">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
<div id="top-tab">
<span class="tab-text">ВХОД В СИСТЕМУ</span>
</div>
</div>
</div>
<?php endif; ?>
<!-- end top panel -->
<?php if ($this->countModules ('icon')) : ?>
<div id="toplinks">
<jdoc:include type="modules" name="icon" style="xhtml" />
</div>
<?php endif; ?>
</div>
</div>
<!-- end header -->
<div id="page-bg">
<div class="wrapper">
<div id="sub-header">
<!-- begin search module -->
<?php if ($this->countModules ('search')) : ?>
<div id="searchmod">
<jdoc:include type="modules" name="search" style="xhtml" />
</div>
<?php endif; ?>
<!-- end search module -->
<!-- begin menu bar -->
<div id="horiz-menu" class="<?php echo $mtype; ?>">
<div id="horiz-menu2">
<?php if ($mtype != "module") : ?>
<?php echo $topnav; ?>
<?php else: ?>
<jdoc:include type="modules" name="toolbar" style="none" />
<?php endif; ?>
</div>
</div>
<!-- end menu bar -->
</div>
<!-- begin showcase area -->
<?php if ($this->countModules ('header') or $this->countModules ('header2')) : ?>
<div id="showcase">
<div id="showcase2">
<div class="padding">
<jdoc:include type="modules" name="header2" style="rounded" />
</div>
</div>
<div id="showcase3">
<jdoc:include type="modules" name="header" style="rounded" />
</div>
</div>
<?php endif; ?>
<div class="clr"></div>
<!-- end showcase area -->
<!-- begin featured area -->
<?php if ($this->countModules ('advert1') or $this->countModules ('advert2')) : ?>
<div id="featured">
<div id="featured2">
<?php if ($this->countModules ('advert2')) : ?>
<div id="featured-right-column">
<div class="padding">
<jdoc:include type="modules" name="advert2" style="rounded" />
</div>
</div>
<?php endif; ?>
<?php if ($this->countModules ('advert1')) : ?>
<div id="featured-left-column">
<div class="padding">
<jdoc:include type="modules" name="advert1" style="rounded" />
</div>
</div>
<?php endif; ?>
</div>
</div>
<div id="featured-bottom">
<div id="featured-bottom2">
<div id="featured-bottom3">
</div>
</div>
</div>
<?php endif; ?>
<div class="clr"></div>
<!-- end featured area -->
<!-- begin main content area -->
<div id="main-content-bar">
<?php if ($show_fontbuttons == "true") : ?>
<div id="accessibility">
<div id="buttons">
<a href="<?php echo $thisurl; ?>fontstyle=f-larger" title="Increase size" class="large"><span class="button">&nbsp;</span></a>
<a href="<?php echo $thisurl; ?>fontstyle=f-default" title="Default size" class="default"><span class="button">&nbsp;</span></a>
<a href="<?php echo $thisurl; ?>fontstyle=f-smaller" title="Decrease size" class="small"><span class="button">&nbsp;</span></a>
</div>
</div>
<?php endif; ?>
<?php if ($this->countModules ('user1') or $this->countModules ('user2') or $this->countModules ('user3')) : ?>
<div class="content-bar-text">Special <span class="color2">Feature</span></div>
<?php endif; ?>
</div>
<div id="main-content">
<table class="mainbody" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<!-- begin leftcolumn -->
<?php if ($this->countModules ('left') or ($subnav and $splitmenu_col=="leftcol")) : ?>
<td class="leftcol">
<div class="padding">
<?php if ($subnav and $splitmenu_col=="leftcol") : ?>
<div id="sub-menu">
<?php echo $subnav; ?>
</div>
<?php endif; ?>
<jdoc:include type="modules" name="left" style="rounded" />
</div>
</td>
<?php endif; ?>
<!-- end leftcolumn -->
<!-- begin maincolumn -->
<td class="maincol">
<?php if ($this->countModules ('user1') or $this->countModules ('user2') or $this->countModules ('user3')) : ?>
<div class="maincol-indicator"></div>
<?php endif; ?>
<div class="padding">
<?php if ($this->countModules ('user1') or $this->countModules ('user2') or $this->countModules ('user3')) : ?>
<div id="mainmodules" class="spacer<?php echo $mainmod_width; ?>">
<?php if ($this->countModules ('user1')) : ?>
<div class="block">
<jdoc:include type="modules" name="user1" style="rounded" />
</div>
<?php endif; ?>
<?php if ($this->countModules ('user2')) : ?>
<div class="block">
<jdoc:include type="modules" name="user2" style="rounded" />
</div>
<?php endif; ?>
<?php if ($this->countModules ('user3')) : ?>
<div class="block">
<jdoc:include type="modules" name="user3" style="rounded" />
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules ('user1') or $this->countModules ('user2') or $this->countModules ('user3')) : ?>
<div id="main-content-bar2">
<div class="content-bar-text2">Recent <span class="color3">News</span></div>
</div>
<?php endif; ?>
<?php if ($show_breadcrumbs == "true") : ?>
<div id="pathway">
<jdoc:include type="module" name="breadcrumbs" style="none" />
</div>
<?php endif; ?>
<?php if ($this->countModules ('inset')) : ?>
<div id="inset">
<div class="padding">
<jdoc:include type="modules" name="inset" style="rounded" />
</div>
</div>
<?php endif; ?>
<div id="content-area">
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
</div>
</td>
<!-- end maincolumn -->
<!-- begin rightcolumn -->
<?php if ($this->countModules ('right') or ($subnav and $splitmenu_col=="rightcol")) : ?>
<td class="rightcol">
<div class="padding">
<?php if ($subnav and $splitmenu_col=="rightcol") : ?>
<div id="sub-menu">
<?php echo $subnav; ?>
</div>
<?php endif; ?>
<jdoc:include type="modules" name="right" style="rounded" />
</div>
</td>
<?php endif; ?>
<!-- end rightcolumn -->
</tr>
</table>
</div>
<!-- end main content area -->
<!-- begin bottom section -->
<?php if ($this->countModules ('user4') or $this->countModules ('user5') or $this->countModules ('user6') or $this->countModules ('user7')) : ?>
<div id="bottom">
<div id="bottommodules" class="spacer<?php echo $bottommods_width; ?>">
<?php if ($this->countModules ('user4')) : ?>
<div class="block">
<jdoc:include type="modules" name="user4" style="rounded" />
</div>
<?php endif; ?>
<?php if ($this->countModules ('user5')) : ?>
<div class="block">
<jdoc:include type="modules" name="user5" style="rounded" />
</div>
<?php endif; ?>
<?php if ($this->countModules ('user6')) : ?>
<div class="block">
<jdoc:include type="modules" name="user6" style="rounded" />
</div>
<?php endif; ?>
<?php if ($this->countModules ('user7')) : ?>
<div class="block">
<jdoc:include type="modules" name="user7" style="rounded" />
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<!-- end bottom section -->
<!-- begin footer -->
<div id="footer">
<div class="footer2">
<div class="footer3">
<a href="<?php echo $this->baseurl; ?>" class="nounder"><img src="<?php echo $template_path; ?>/images/blank.gif" border="0" alt="" id="logo-bottom" class="png" /></a>
<?php if ($this->countModules ('footer')) : ?>
<div id="bottom-menu">
<div id="bottom-menu2">
<jdoc:include type="modules" name="footer" style="xhtml" />
</div>
</div>
<?php endif; ?>
</div>
</div>
</div>
<div id="copyright">
                                     <img src="<?php echo $template_path; ?>/images/blank.gif" alt="RocketTheme Joomla Templates" id="rocket" class="png" /></a>
<div class="copyright">&copy; 2009-2012 GILDIYA Все права защищены.
Использование материалов сайта возможно только при наличии согласия администрации и активной ссылки на источник.</div>
</div>
<!-- end footer -->
                                             <jdoc:include type="modules" name="debug" style="none" />
</div>
</div>
</body>
</html>
*

aser

  • Осваиваюсь на форуме
  • 48
  • 2 / 0
Re: модуль
« Ответ #3 : 14.08.2009, 07:09:51 »
В этом шаблоне есть несколько тем...выбрал именно свою!!
Так же и в CSS что-то тишина может это только я не вижу?
Код
/* Style 11 */

body {
color: #ccc;
background: #000;
}

a,
h3 {
color: #C4AA29;
}

.rok-content-rotator h2 a.active {
color: #C4AA29 !important;
}

.contentheading {
background: url (../images/style11/content-head-bg.png) 0 3px no-repeat;
color: #C4AA29;
}

td.leftcol tr.sectiontableentry1 td,
td.rightcol tr.sectiontableentry1 td,
td.leftcol tr.sectiontableentry2 td,
td.rightcol tr.sectiontableentry2 td,
td.leftcol td.sectiontableentry1,
td.rightcol td.sectiontableentry1,
td.leftcol td.sectiontableentry2,
td.rightcol td.sectiontableentry2 {
  border-bottom: 1px solid #333;
}

td.leftcol tr.sectiontableentry1 td,
td.rightcol tr.sectiontableentry1 td,
td.leftcol td.sectiontableentry1,
td.rightcol td.sectiontableentry1 {
background: #444;
}

#page-bg {
background: url (../images/style11/page-bg.jpg) 50% -85px repeat-x;
}

#header {
background: url (../images/dark/header-bg.png) 50% 0 repeat-x;
}

#logo {
background: url (../images/dark/logo.png) 0 0 no-repeat;
}

#topmod {
background: url (../images/dark/login-pane.png) 0 -50px no-repeat;
}

#toplinks a.mainlevel {
color: #666;
}

#toplinks a:hover {
color: #ccc;
}

.rok-content-rotator .arrow {
background: url (../images/dark/rotator-arrow.png) 0 0 no-repeat;
}

.rok-content-rotator {
background: #333;
}

#showcase {
background: url (../images/dark/showcase-bg.png) 0 0;
color: #fff;
}

#showcase a {
color: #F0D032;
}

#showcase .module h3 {
color: #000;
}

#showcase .module h3 span {
color: #fff;
}

#featured .module a {
color: #C4AA29;
}

#featured-bottom {
background: url (../images/dark/featured-bl.png) 0 100% no-repeat;
}

#featured-bottom2 {
background: url (../images/dark/featured-br.png) 100% 100% no-repeat;
}

#featured .module h3,
.module-scroller h3 {
color: #C4AA29;
}

#main-content-bar {
background: url (../images/dark/main-content-bar.png) 0 0 repeat-x;
}

div.maincol-indicator {
background: url (../images/dark/maincol-indicator.png) 0 0 no-repeat;
}

td.rightcol,
td.leftcol {
background: #303030;
color: #ccc;
}

.footer2 {
background: url (../images/dark/footer-bl.png) 0 100% no-repeat;
}

.footer3 {
background: url (../images/dark/footer-br.png) 100% 100% no-repeat;
}

img#rocket {
background: url (../images/dark/rocket.png) 0 0 no-repeat;
}

td.rightcol .module h3,
td.leftcol .module h3,
td.rightcol .module-menu h3,
td.leftcol .module-menu h3,
td.leftcol .module_menu h3,
td.rightcol .module_menu h3 {
background: url (../images/dark/sidemodule-h3.png) 0 0 no-repeat;
color: #ccc;
}

td.rightcol .module h3 span,
td.leftcol .module h3 span,
td.rightcol .module-menu h3 span,
td.leftcol .module-menu h3 span,
td.rightcol .module-red h3 span,
td.leftcol .module-red h3 span,
td.rightcol .module-blue h3 span,
td.leftcol .module-blue h3 span,
td.rightcol .module-black h3 span,
td.leftcol .module-black h3 span,
td.rightcol .module-green h3 span,
td.leftcol .module-green h3 span,
td.rightcol .module-orange h3 span,
td.leftcol .module-orange h3 span {
color: #fff;
}

td.rightcol .module a,
td.leftcol .module a {
color: #C4AA29;
}

td.rightcol .module-red h3,
td.leftcol .module-red h3 {
background: url (../images/dark/sidemodule-red.png) 0 0 no-repeat;
color: #DBB8B8;
}

td.rightcol .module-blue h3,
td.leftcol .module-blue h3 {
background: url (../images/dark/sidemodule-blue.png) 0 0 no-repeat;
color: #BAD5DF;
}

td.rightcol .module-black h3,
td.leftcol .module-black h3 {
background: url (../images/dark/sidemodule-black.png) 0 0 no-repeat;
color: #bebebe;
}

td.rightcol .module-green h3,
td.leftcol .module-green h3 {
background: url (../images/dark/sidemodule-green.png) 0 0 no-repeat;
color: #D0DAB3;
}

td.rightcol .module-orange h3,
td.leftcol .module-orange h3 {
background: url (../images/dark/sidemodule-orange.png) 0 0 no-repeat;
color: #ECD3B3;
}

#horiz-menu {
background: url (../images/style11/horiz-menu-l.png) 0 0 no-repeat;
}

#horiz-menu2 {
background: url (../images/style11/horiz-menu-r.png) 100% 0 no-repeat;
}

#horiz-menu a,
#horiz-menu li.active a {
color: #ccc;
}

#horiz-menu li.active a {
background: url (../images/style11/horiz-menu-active.png) 50% 0 no-repeat;
color: #fff;
}

#horiz-menu li a:hover {
color: #fff;
}

div.menuslide {
background: url (../images/style11/horiz-menu-hover.png) 50% 0 no-repeat;
width: 65px;
height: 19px;
}

#horiz-menu ul ul li a:hover,
#horiz-menu ul li.active.parent ul a:hover {
color: #C4AA29;
}

#main-content a.mainlevel {
color: #fff;
background: url (../images/dark/menu-arrow.png) 4px 7px no-repeat;
}

#main-content a#active_menu.mainlevel {
background: url (../images/style11/menu-arrow-active.png) 4px 7px no-repeat;
color: #C4AA29;
}

#main-content a.mainlevel:hover {
color: #C4AA29;
}

#main-content a.sublevel {
color: #fff;
}

#main-content a.sublevel:hover {
color: #C4AA29;
}

#main-content a#active_menu.sublevel {
color: #C4AA29;
}

ul.menu a {
color: #fff;
background: url (../images/dark/menu-arrow.png) 4px 7px no-repeat;
}

ul.menu ul li a,
ul.menu li.active.parent ul li a,
ul.menu li.active.parent ul li.parent a.daddy,
ul.menu li.active.parent ul li.active.parent ul li a {
color: #fff;
}

ul.menu a:hover,
ul.menu li.active a,
ul.menu li.active.parent a.daddy,
ul.menu li.active.parent ul li a:hover,
ul.menu li.active.parent ul li.parent a.daddy:hover,
ul.menu li.active.parent ul li.active.parent ul li a:hover,
ul.menu li.active.parent ul li.active.parent a.daddy,
ul.menu li.active.parent ul li.active a,
ul.menu li.active.parent ul li.active.parent ul li.active a {
color: #C4AA29;
}

ul.menu li.active a,
ul.menu li.active a.daddy {
background: url (../images/style11/menu-arrow-active.png) 4px 7px no-repeat;
}

ul.menu ul {
background: #191919 url (../images/dark/sidemenu-bgtop.png) 15px 0 no-repeat;
}

a.readon {
background: url (../images/style11/readon.png) 0 0 no-repeat;
color: #fff;
}

blockquote.color2,
.important-title2,
span.number-color,
span.dropcap-color {
color: #C4AA29;
}

blockquote.color3,
.important-title3,
span.number-color2,
span.dropcap-color2 {
color: #cc0000;
}

.important2 {
border: 1px solid #C4AA29;
}

.important3 {
border: 1px solid #cc0000;
}

a.large .button {
background: url (../images/dark/font-lg.png) 0 0 no-repeat;
}

a.small .button {
background: url (../images/dark/font-sm.png) 0 0 no-repeat;
}

a.default .button {
background: url (../images/dark/font-d.png) 0 0 no-repeat;
}

div.content-bar-text {
color: #fff;
}

div.content-bar-text2 {
color: #000;
}

span.color2 {
color: #999;
}

span.color3 {
color: #fff;
}

span.rotator-demo-header {
color: #C4AA29;
}

По мимо этого есть ещё
editor_content.css
template_css.css
template_ie7.css
rokmoomenu.css
*

profiX0808

  • Захожу иногда
  • 497
  • 70 / 0
Re: модуль
« Ответ #4 : 14.08.2009, 10:16:25 »
Код
... <div id="showcase">
<div id="showcase2">
<div class="padding">
<jdoc:include type="modules" name="header2" style="rounded" />
</div>
</div> ...
Вот "эти классы" нужно проверить showcase, showcase2, padding (кстати у последнего странное название)

Цитировать
По мимо этого есть ещё
editor_content.css
template_css.css
template_ie7.css
rokmoomenu.css
посмотреть можно в template_css.css
*

aser

  • Осваиваюсь на форуме
  • 48
  • 2 / 0
Re: модуль
« Ответ #5 : 16.08.2009, 07:33:12 »
Код
... <div id="showcase">
<div id="showcase2">
<div class="padding">
<jdoc:include type="modules" name="header2" style="rounded" />
</div>
</div> ...
Вот "эти классы" нужно проверить showcase, showcase2, padding (кстати у последнего странное название)
посмотреть можно в template_css.css
Так а что их  смотреть если нет циферных данных...которыми можно изменить размер..
Вот код template_css.css
Что-то и тут не густо.....
Код
/* @group Core Elements */

html {
height: 100%;
margin-bottom: 1px;
}

body {
margin: 0;
padding: 0;
line-height: 135%;
}

/* Font family information */

.rok-content-rotator h2 {
font-family:  Helvetica, Tahoma, "Nimbus Sans L", sans-serif;
}

body#ff-optima, #ff-optima td {
font-family: Optima, Lucida, 'MgOpen Cosmetica', 'Lucida Sans Unicode', sans-serif;
}

body#ff-geneva, #ff-geneva td {
font-family:  Geneva, Tahoma, "Nimbus Sans L", sans-serif;
}

body#ff-helvetica, #ff-helvetica td {
font-family: Helvetica, Arial, FreeSans, sans-serif;
}

body#ff-lucida, #ff-lucida td {
font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, sans-serif;
}

body#ff-georgia, #ff-georgia td {
font-family: Georgia, sans-serif;
}

body#ff-trebuchet, #ff-trebuchet td {
font-family: "Trebuchet MS", sans-serif;
}

body#ff-palatino, #ff-palatino td {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", Times, serif;
}

/* end font family information */

form {
margin: 0;
padding: 0;
}

body.f-smaller,
body#ff-optima.f-smaller,
body#ff-georgia.f-smaller {
font-size: 11px;
}

body,
body.f-default {
font-size: 12px;
}

body#ff-optima,
body#ff-optima.f-default {
font-size: 13px;
}

body#ff-georgia,
body#ff-georgia.f-default {
font-size: 13px;
}

body.f-larger,
body#ff-optima.f-larger,
body#ff-georgia.f-larger {
font-size: 14px;
}

p {
  /* setup some more readable paragraph spacing */
  margin-top: 10px;
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5 {
/* setup some more readable header spacing */
padding-bottom: 5px;
margin: 25px 0 10px 0;
font-weight: normal;
line-height: 120%;
}

h1 {
font-size: 200%;
line-height: 100%;
}

h2 {
font-size: 175%;
line-height: 100%;
}

h3 {
font-size: 150%;
}

h4 {
font-size: 120%;
}

h5 {
font-size: 120%;
text-transform: uppercase;
}

a {
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* @end */

/* @group Joomla Elements */

.small,
.modifydate,
.createdate,
div.mosimage_caption {
font-size: 95%;
}

.componentheading {
font-size: 170%;
line-height: 100%;
padding: 0;
margin: 25px 0 20px 0;
}

.contentheading {
font-size: 170%;
font-weight: normal;
line-height: 130%;
padding: 10px 0 15px 30px;
border: 0;
}

td.buttonheading,
.contentpaneopen td.buttonheading {
padding: 0px 3px 0;
border: 0;
}

td.column_separator {
padding-left: 15px;
}

td.componentheading {
padding-bottom: 15px;
}

.sectiontableheader {
  font-weight: bold;
  padding: 4px;
  line-height: 20px;
}

tr.sectiontableentry1 td,
tr.sectiontableentry2 td,
td.sectiontableentry1,
td.sectiontableentry2 {
  text-align: left;
  padding: 2px 0 0px 5px;
  border-bottom: 1px solid #f1f1f1;
}

tr.sectiontableentry2 td,
td.sectiontableentry2 {
  height: 27px;
}

tr.sectiontableentry1 td,
td.sectiontableentry1 {
height: 27px;
background: #f7f7f7;
}

.contentpane,
.contentpaneopen {
width: 100%;
}

/* @end */

/* @group Structure */

#toppanel-container {
position: relative;
z-index: 5000;
}

#topmod {
width: 447px;
height: 150px;
position: absolute;
right: 0;
top: -123px;
color: #ccc;
}

#topmod .wrapper {
width: 410px;
overflow: hidden;
}

#top-tab {
width: 195px;
height: 30px;
position: absolute;
top: 123px;
text-align: center;
cursor: pointer;
margin-left: 260px;
}

span.tab-text {
color: #ddd;
line-height: 170%;
}

#toplinks {
float: right;
margin-top: 60px;
}

#toplinks a.mainlevel {
display:  block;
float:  left;
background: none;
margin: 0;
padding: 0 5px;
text-indent: 0;
}

#toplinks ul {
margin: 0;
padding: 0;
float: right;
}

#toplinks li {
float:  left;
list-style: none;
margin-right: 15px;
}

#toplinks li img {
float: left;
}

#logo {
width: 220px;
height: 78px;
margin-left: 9px;
position: absolute;
}

#header {
height: 85px;
}

#searchmod {
float: right;
background: url (../images/search-bg.png) 0 0 no-repeat;
width: 254px;
height: 47px;
padding: 0;
margin: 0;
}

#searchmod .inputbox {
background: none;
border: 0;
width: 190px;
height: 15px;
padding-left: 4px;
margin-left: 48px;
margin-top: 15px;
}

#sub-header {
height: 60px;
padding-top: 14px;
}

#showcase {
overflow: hidden;
padding: 10px;
}

#showcase2 {
width: 236px;
float: right;
overflow: hidden;
}

#showcase3 {
margin-right: 236px;
position: relative;
}

#showcase2 .padding {
padding: 0 0 0 10px;
}

#featured {
background: #0f0f0f url (../images/featured-top.png) 0 0 repeat-x;
overflow: hidden;
color: #ccc;
}

#featured2 {
background: url (../images/featured-bottom.png) 50% 100% repeat-x;
overflow: hidden;
}

#featured-bottom {
height: 10px;
margin-bottom: 10px;
}

#featured-bottom2 {
height: 10px;
}

#featured-bottom3 {
background: url (../images/featured-bm.png) 0 0 repeat-x;
margin: 0 25px;
height: 10px;
overflow: hidden;
}

#featured-left-column {
margin-right: 277px;
}

#featured-right-column {
width: 265px;
margin-right: 12px;
float: right;
overflow: hidden;
}

#featured-right-column .padding {
padding: 15px 0 10px 0;
}

#featured-left-column .padding {
padding: 15px 35px 0 12px;
}

#featured h2 {
color: #fff;
font-size: 160%;
}

#main-content-bar {
height: 29px;
}

#main-content-bar2 {
height: 46px;
background: url (../images/content-head.png) 0 0 repeat-x;
margin: 0 -15px 10px -15px;
}

#main-content {
color: #333;
background: #fff;
}

div.maincol-indicator {
width: 20px;
height: 24px;
position: absolute;
margin: 0 0 0 20px;
padding: 0;
}

table.mainbody,
table.blog {
width: 100%;
}

td.maincol {
background: url (../images/maincol-top-bg.png) 0 0 repeat-x;
}

td.leftcol .padding,
td.rightcol .padding {
padding: 0 15px 15px 15px;
}

td.maincol .padding {
padding: 20px 15px 15px 15px;
}

#inset {
float: right;
}

#inset .padding {
padding: 0 0 20px 20px;
}

#bottom {
padding: 20px 20px 15px 0;
background: #fff url (../images/bottom-bg.png) 0 0 repeat-x;
overflow: hidden;
color: #666;
}

#footer {
background: #fff url (../images/footer-bm.png) 50% 100% repeat-x;
height: 95px;
border-top: 1px solid #e0e0e0;
}

.footer2 {
height: 95px;
}

.footer3 {
height: 95px;
}

#logo-bottom {
width: 165px;
height: 42px;
display: block;
margin-top: 25px;
margin-left: 20px;
background: url (../images/logo-bottom.png) 0 0 no-repeat;
float: left;
}

img#rocket {
width: 165px;
height: 22px;
margin-top: 20px;
margin-left: 20px;
margin-right: 50px;
float: left;
}

#copyright {
padding-bottom: 25px;
}

.spacer .block {
float: left;
}

.spacer.w99 .block {
width: 99.8%;
}

.spacer.w49 .block {
width: 49.8%;
}

.spacer.w33 .block {
width: 33.1%;
}

.spacer.w24 .block {
width: 24.8%;
}

/* @end */

/* @group Modules */

#topmod .moduletable {
padding: 0;
margin: 15px 0 0 0;
overflow: hidden;
}

#topmod .moduletable h3 {
color: #ccc;
font-size: 100%;
padding-right: 15px;
text-align: right;
margin: 0 0 15px 0;
text-transform: uppercase;
background: url (../images/login-h3.png) 100% 1px no-repeat;
}

#featured .module h3,
#showcase .module h3 {
margin-top: 0;
text-transform: uppercase;
font-size: 100%;
font-weight: bold;
}

.module-scroller {
position: relative;
}

.module-scroller h3 {
margin: 10px 0 0 10px;
top: 0;
position: absolute;
text-transform: uppercase;
font-size: 100%;
font-weight: bold;
}

.module-scroller h3 span {
color: #fff;
}

#recent-videos {
margin-top: -44px;
}

#featured .module h3 span {
color: #fff;
}

td.rightcol .module h3,
td.leftcol .module h3,
td.rightcol .module-menu h3,
td.leftcol .module-menu h3,
td.leftcol .module_menu h3,
td.rightcol .module_menu h3,
td.leftcol .module-red h3,
td.rightcol .module-red h3,
td.leftcol .module-blue h3,
td.rightcol .module-blue h3,
td.leftcol .module-black h3,
td.rightcol .module-black h3,
td.leftcol .module-green h3,
td.rightcol .module-green h3,
td.leftcol .module-orange h3,
td.rightcol .module-orange h3 {
height: 45px;
margin: 0 -15px;
text-indent: 15px;
font-size: 100%;
padding: 0;
line-height: 200%;
text-transform: uppercase;
font-weight: bold;
}

td.rightcol .module,
td.leftcol .module,
td.rightcol .module-red,
td.leftcol .module-red,
td.rightcol .module-blue,
td.leftcol .module-blue,
td.rightcol .module-black,
td.leftcol .module-black,
td.rightcol .module-green,
td.leftcol .module-green,
td.rightcol .module-orange,
td.leftcol .module-orange,
td.leftcol .module-menu,
td.rightcol .module-menu,
td.leftcol .module_menu,
td.rightcol .module_menu {
margin: 0 0 15px 0;
padding: 0 0 10px 0;
}

#inset .module {
margin-bottom: 20px;
overflow: hidden;
}

#inset .module h3 {
font-size: 170%;
font-weight: normal;
line-height: 130%;
padding: 10px 0 15px 30px;
margin: 0;
border: 0;
background: url (../images/inset-h3.png) 0 3px no-repeat;
color: #666;
}

#inset .module h3 span {
color: #999;
}

#mainmodules {
padding-bottom: 10px;
padding-top: 10px;
}

#mainmodules h2 {
margin-top: 0;
}

#mainmodules .module h3 {
margin-top: 0;
color: #666;
}

#mainmodules .module h3 span {
color: #999;
}

#bottommodules div.block {
border-left: 1px solid #e0e0e0;
}

#bottommodules div:first-child.block {
border-left: 0;
}

#bottommodules .module h3 {
font-size: 110%;
font-weight: bold;
color: #555;
margin-top: 0;
}

#bottommodules .module {
margin-right: 15px;
padding-left: 15px;
margin-bottom: 15px;
overflow: hidden;
}

#mainmodules .module {
overflow: hidden;
margin-right: 15px;
margin-bottom: 15px;
}

#mainmodules,
#bottommodules {
overflow: hidden;
}

/* @end */

/* @group Horizontal Menu */

#horiz-menu {
height: 45px;
position: absolute;
}

#horiz-menu2 {
height: 45px;
margin: 0 0 0 16px;
padding: 0 5px 0 0;
}

ul#horiznav.menutop,
#horiz-menu ul.menutop {
padding: 0;
margin: 0;
position: relative;
}

#horiz-menu ul {
list-style: none;
}

#horiz-menu li {
display: block;
float: left;
margin: 0;
padding: 0;
}

#horiz-menu a,
#horiz-menu li.active a {
white-space: nowrap;
display: block;
float: left;
height: 45px;
line-height: 40px;
padding: 12px 15px 0 15px;
font-weight: normal;
font-size: 130%;
overflow: hidden;
text-decoration: none;
z-index: 100;
position: relative;
}

#horiz-menu li.active li a,
#horiz-menu li.active.parent li a {
font-weight: normal;
font-size: 100%;
}

#horiz-menu ul ul {
margin: 0;
padding: 10px 0 8px 0;
background: url (../images/dropdown-top.png) 0 0 no-repeat;
border-left: 1px solid #363636;
border-right: 1px solid #363636;
border-bottom: 1px solid #363636;
}

#horiz-menu ul ul ul {
background: #0e0e0e;
border-top: 1px solid #363636;
padding: 4px 0 8px 0;
}

#horiz-menu ul ul li a,
#horiz-menu ul li.active.parent ul a {
padding-left: 5px;
color: #fff;
}

#horiz-menu ul ul li a:hover,
#horiz-menu ul li.active.parent ul a:hover {
padding-left: 5px;
}

#horiz-menu ul ul li a.daddy,
#horiz-menu ul ul li a.daddy:hover {
background: url (../images/inset-arrow.png) 95% 50% no-repeat;
}

/* mouseovers */

#horiz-menu li li a:hover {
background: none;
}

#horiz-menu li li.active,
#horiz-menu li.active li a,
#horiz-menu li.active li a:hover {
background: none;
}

#horiz-menu li li a {
font-size: 100%;
font-weight: normal;
background: none;
}

/* bottom menu */

#bottom-menu {
background: url (../images/bottom-menu-l.png) 0 0 no-repeat;
height: 45px;
position: absolute;
margin-left: 220px;
margin-top: 25px;
}

#bottom-menu2 {
background: url (../images/bottom-menu-r.png) 100% 0 no-repeat;
height: 45px;
margin: 0 0 0 16px;
}

#bottom-menu ul#mainlevel-bottom {
padding: 0;
margin: 0;
position: relative;
}

#bottom-menu #mainlevel-bottom ul {
list-style: none;
}

#bottom-menu #mainlevel-bottom li {
display: block;
float: left;
margin: 0;
padding: 0;
}

#bottom-menu #mainlevel-bottom a,
#bottom-menu #mainlevel-bottom a#active_menu.mainlevel {
white-space: nowrap;
display: block;
float: left;
height: 45px;
line-height: 40px;
padding: 12px 15px 0 15px;
font-weight: normal;
font-size: 120%;
overflow: hidden;
text-decoration: none;
color: #777;
}

#bottom-menu a#active_menu.mainlevel-bottom {
background: url (../images/bottom-menu-active.png) 50% 0 no-repeat;
color: #333;
}

#bottom-menu a.mainlevel-bottom:hover {
background: url (../images/bottom-menu-hover.png) 50% 0 no-repeat;
color: #333 !important;
}

/* @end */

/* @group Mainmenu */

#main-content a.mainlevel {
display: block;
line-height: 24px;
text-indent: 18px;
height: 24px;
overflow: hidden;
font-size: 110%;
}

#main-content a.sublevel {
text-decoration: none;
line-height: 25px;
font-size: 110%;
line-height: 24px;
}

a.mainlevel:hover,
a.sublevel:hover {
text-decoration: none;
}

/* @end */

/* @group Sub Menu */

ul.menu {
margin: 0 0 15px 0;
padding: 0;
}

ul.menu li {
list-style: none;
margin: 0;
padding: 0;
}

ul.menu span {
display: block;
height: 24px;
}

ul.menu a {
display: block;
line-height: 24px;
text-indent: 18px;
height: 24px;
overflow: hidden;
font-size: 110%;
}

ul.menu li.active li a,
ul.menu li.active.parent ul li.parent a.daddy {
background: none;
}

ul.menu ul {
margin: 4px 0;
}

ul.menu ul li a {
text-indent: 10px;
}

ul.menu ul a {
background: none;
text-indent: 0;
}

ul.menu ul {
margin: 5px -15px;
padding: 10px 0 10px 30px;
}

ul.menu ul ul {
padding: 0;
margin-left: 20px;
background: none;
}

ul.menu li li {
padding: 0;
margin: 0;
}

ul.menu ul a {
text-indent: 0;
}

ul.menu li.active a,
ul.menu li.active a:hover {
text-decoration: none;
line-height: 24px;
}

ul.menu li a:hover {
text-decoration: none;
}

/* @end */

/* @group Content Styles */

/* @group Readon */

a.readon,
a.readon2 {
margin-top: 20px;
font-weight: normal;
padding-bottom: 10px;
font-size: 75%;
display: block;
line-height: 150%;
text-transform: uppercase;
float: right;
overflow: hidden;
}

a.readon {
padding-right: 40px;
text-indent: 5px;
}

a.readon:hover,
a.readon2:hover,
a.readon3:hover {
text-decoration: none;
}

a.readon2 {
padding-right: 15px;
text-indent: 4px;
background: url (../images/readon2.png) 0 0 no-repeat;
color: #fff;
}

a.readon3 {
margin-top: 10px;
font-weight: normal;
font-size: 75%;
padding-bottom: 5px;
padding-right: 10px;
display: block;
text-indent: 4px;
line-height: 150%;
color: #fff;
text-transform: uppercase;
background: url (../images/readon3.png) 0 0 no-repeat;
}

#bottom a.readon {
background: url (../images/inset-arrow.png) 100% 5px no-repeat;
float: right;
color: #444;
width: auto;
padding-right: 12px;
text-transform: lowercase;
font-size: 100%;
}

#bottom a.readon:hover {
color: #111;
}

#bottom a,
#bottom a.readon
#topmod a {
color: #333;
}

/* @end */

/* @group Pathway */

span.pathway {
display: block;
line-height: 220%;
font-weight: normal;
height: 22px;
line-height: 22px;
overflow: hidden;
margin-bottom: 15px;
}

span.pathway img {
float: none;
vertical-align: top;
width: 7px;
height: 22px;
padding-right: 8px;
background: url (../images/inset-arrow.png) 0 50% no-repeat;
}

span.pathway a {
float: none;
padding: 0 10px 0 0;
}

/* @end */

/* @group Typography */

ul.bullet-1,
ul.bullet-2,
ul.bullet-3,
ul.bullet-4,
ul.bullet-5 {
padding-left: 15px;
overflow: hidden;
margin-left: 5px;
}

ul.bullet-1 li,
ul.bullet-2 li,
ul.bullet-3 li {
list-style: none;
padding-bottom: 3px;
margin-bottom: 5px;
padding-left: 14px;
}

ul.bullet-1 li {
background: url (../images/main-arrow.png) 0 4px no-repeat;
}

ul.bullet-2 li {
background: url (../images/typo/bullet-2.png) 0 4px no-repeat;
}

ul.bullet-3 li {
background: url (../images/inset-arrow.png) 1px 4px no-repeat;
}

ul.bullet-4 li {
list-style: none;
padding-left: 22px;
margin-bottom: 5px;
padding-bottom: 3px;
background: url (../images/typo/bullet-4.png) 0 0 no-repeat;
}

ul.bullet-5 li {
list-style: none;
padding-left: 22px;
margin-bottom: 5px;
padding-bottom: 3px;
background: url (../images/typo/bullet-5.png) 0 0 no-repeat;
}

pre {
padding: 10px;
background: #f6f6f6;
border-top: 1px solid #e5e5e5;
border-right: 1px solid #e5e5e5;
border-left: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}

blockquote {
display: block;
font-style: italic;
font-size: 120%;
line-height: 150%;
width: auto;
padding: 10px 20px 10px 20px;
margin: 15px 0;
background: #f6f6f6;
border-top: 1px solid #e5e5e5;
border-right: 1px solid #e5e5e5;
border-left: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}

blockquote.color1,
blockquote.color2,
blockquote.color3 {
display: block;
font-style: italic;
font-size: 120%;
line-height: 150%;
width: auto;
padding: 0px 20px;
margin: 15px 0;
border: 0;
background: 0;
}

blockquote.color1 {
color: #666;
}

blockquote.quotes {
display: block;
background: url (../images/typo/quote-start.png) 0 5px no-repeat;
padding: 0px 20px 0 38px;
margin: 20px 0;
font-size: 120%;
line-height: 150%;
width: auto;
color: #666;
border: 0;
}

blockquote.quotes p {
padding: 0 38px 0 0;
margin-top: 0;
background: url (../images/typo/quote-end.png) 100% 100% no-repeat;
}

.important {
border: 1px solid #999;
}

.important,
.important2,
.important3,
.important4 {
padding: 15px;
margin: 15px 0;
}

span.important-title,
span.important-title2,
span.important-title3,
span.important-title4 {
display: block;
float: left;
margin-top: -24px;
background: #fff;
padding: 0 8px;
font-weight: bold;
font-size: 120%;
}

.important4 {
border: 1px solid #000;
}

span.important-title,
span.number {
color: #666;
}

span.important-title4 {
color: #000;
}

span.number,
span.number-color,
span.number-color2 {
display: block;
font-size: 170%;
float: left;
margin: 2px 10px 0 15px;
}

span.highlight {
background: #FFFBD5;
padding: 1px 2px;
}

span.highlight-blue {
color: #0294C1;
}

span.highlight-red {
color: #cc0000;
}

span.highlight-green {
color: #7FA500;
}

span.highlight-orange {
color: #ff9900;
}

span.highlight-bold {
font-weight: bold;
font-size: 120%;
}

span.dropcap,
span.dropcap-color,
span.dropcap-color2 {
display: block;
font-size: 260%;
float: left;
margin: 0px 4px 0 0;
line-height: 100%;
}

span.inset-left {
display: block;
color: #000;
padding: 15px;
float: left;
width: 20%;
font-size: 110%;
font-weight: bold;
font-style: italic;
}

span.inset-right {
display: block;
color: #000;
padding: 15px;
float: right;
width: 20%;
font-size: 110%;
font-weight: bold;
font-style: italic;
}

/* @end */

/* @group Notice Styles */

span.attention,
span.notice,
span.alert,
span.download,
span.approved,
span.media,
span.note,
span.cart,
span.camera,
span.doc {
display: block;
padding: 8px 10px 8px 36px;
margin: 15px 0;
}

span.attention {
color: #B79000;
border: 1px solid #E7BD72;
background: #FFF3A3 url (../images/typo/attention.png) 10px 50% no-repeat;
}

span.notice {
color: #648434;
border: 1px solid #9BCC54;
background: #CDEFA6 url (../images/typo/notice.png) 10px 50% no-repeat;
}

span.alert {
color: #CF3738;
border: 1px solid #FFACAD;
background: #FFD5D5 url (../images/typo/alert.png) 10px 50% no-repeat;
}

span.download {
color: #1C6B8B;
border: 1px solid #6ABCE2;
background: #A8CDE3 url (../images/typo/download.png) 10px 50% no-repeat;
}

span.approved {
color: #666;
border: 1px solid #a8a8a8;
background: #ccc url (../images/typo/approved.png) 10px 50% no-repeat;
}

span.media {
color: #C76E34;
border: 1px solid #FFBB65;
background: #FFE0B6 url (../images/typo/media.png) 10px 50% no-repeat;
}

span.note {
color: #B79000;
border: 1px solid #E7BD72;
background: #FFF3A3 url (../images/typo/note.png) 10px 50% no-repeat;
}

span.cart {
color: #666;
border: 1px solid #C5C5C5;
background: #E6E6E6 url (../images/typo/cart.png) 10px 50% no-repeat;
}

span.camera {
color: #666;
border: 1px solid #C5C5C5;
background: #E6E6E6 url (../images/typo/camera.png) 10px 50% no-repeat;
}

span.doc {
color: #C76E34;
border: 1px solid #FFBB65;
background: #FFE0B6 url (../images/typo/doc.png) 10px 50% no-repeat;
}

#accessibility {
width: 150px;
height: 20px;
margin-top: 7px;
float: right;
}

#accessibility span {
background-repeat: no-repeat;
}

#accessibility a {
text-decoration: none;
cursor: pointer;
}

#accessibility #buttons {
float: right;
padding-right: 10px;
}

#accessibility .button {
display: block;
float: right;
width: 12px;
height: 14px;
margin-right: 10px;
}

/* @end */

/* @grup RokContentRotator */

.rok-content-rotator {
margin: 0;
height: 270px;
position: relative;
z-index: 1;
}

.rok-content-rotator li {
height: 43px;
}

.rok-content-rotator h2 {
width: 213px;
height: 47px;
font-size: 130%;
line-height: 47px;
text-indent: 0;
padding: 0;
margin: 0 7px 0 7px;
z-index: 1;
outline: none;
}

.rok-content-rotator h2 a {
display: block;
z-index: 3;
position: absolute;
width: 213px;
color: #fff !important;
outline: none;
text-indent: 0;
margin: 0;
padding: 0;
}

.rok-content-rotator h2 a:hover {
text-indent: 3px;
}

.rok-content-rotator h2 a.active {
font-weight: normal;
font-size: 100%;
}

.rok-content-rotator h2 a:hover,
.rok-content-rotator h2 a:hover.active {
text-decoration: none;
}

.rok-content-rotator .arrow {
position: absolute;
width: 21px;
height: 47px;
right: 234px;
z-index: 2;
top: 10px;
}

/* dont change below */
.rok-content-rotator {
position: relative;
background: #333;
}


.rok-content-rotator ul {
padding: 0;
float: right;
margin: 10px 0 0 0;
width: 227px;
text-indent: 0;
}

.rok-content-rotator li {
list-style: none;
padding: 0;
}

.rok-content-rotator .content {
position: absolute;
left: 0;
top: 0;
margin-right: 210px;
padding: 15px;
visibility: hidden;
color: #ddd;
}

/* @end */

a.nounder {
text-decoration: none;
border: 0;
cursor: pointer;
}

a.nounder:hover {
text-decoration: none;
}

a img.album {
border-width: 2px;
border-style: solid;
}

.clr {
clear:both;
}

fieldset {
border-left: 0;
border-right: 0;
}

fieldset.input,
a img,
body .pollstableborder {
border: 0;
}

img.content-left {
float: left;
margin-right: 10px;
padding: 5px;
}

img.content-right {
float: right;
margin-left: 10px;
padding: 5px;
}

#referencewidth {
width: 100%;
overflow:hidden;
}

.back_button {
margin-top: 20px;
}

/* @end */

/* @group Signal Login Styling */

#sl_horiz {
margin: 0;
position: absolute;
width: 100%;
}

#sl_horiz #greeting {
float: left;
height: 22px;
margin-right: 10px;
}

#sl_horiz .button {
border: 0;
width: 56px;
height: 22px;
margin: 0;
text-align: center;
font-size: 100%;
font-weight: bold;
cursor: pointer;
color: #666;
background: url (../images/input-button.png) 0 0 no-repeat;
position: absolute;
right: 44px;
}

#sl_horiz .button:hover {
color: #333;
}

#sl_horiz #sl_username {
float: left;
width: 160px;
height: 22px;
background: url (../images/input-field.png) 0 0 no-repeat;
}

#sl_horiz #sl_username input {
padding: 0 0 0 5px;
width: 155px;
height: 22px;
font-size: 100%;
font-weight: normal;
border: 0;
color: #666;
background: none;
margin: 0;
}

#sl_horiz #sl_pass {
margin-left: 12px;
float: left;
width: 160px;
height: 22px;
background: url (../images/input-field.png) 0 0 no-repeat;
}

#sl_horiz #sl_pass input {
padding: 0 0 0 5px;
width: 155px;
height: 22px;
font-size: 100%;
font-weight: normal;
border: 0;
color: #666;
background: none;
margin: 0 10px 0 0;
}

#sl_horiz #sl_rememberme {
float: left;
line-height: 22px;
color: #ccc;
margin-top: 10px;
clear: left;
}

#sl_horiz #sl_lostpass,
#sl_hoziz #sl_lostname,
#sl_horiz a {
margin-left: 10px;
float: left;
line-height: 22px;
color: #ccc;
}

#sl_horiz #sl_lostpass {
margin-top: 10px;
}

#sl_horiz #sl_register {
margin-left: 10px;
float: left;
margin-top: 10px;
}

#sl_horiz #sl_posttext {
margin-left: 10px;
float: left;
}

#sl_horiz #sl_submitbutton {
margin: 0;
padding: 0;
width: auto;
height: 22px;
}

/* @end */

/* @group RokIntroScroller */

.scroller-padding {
padding: 25px 40px;
}

.scroller-bottom {
background: url (../images/slider/slider-bm.png) 50% 100% repeat-x;
color: #666;
margin-top: 16px;
overflow: hidden;
}

.scroller-bottom1 {
background: url (../images/slider/slider-br.png) 100% 100% no-repeat;
}

.scroller-bottom2 {
background: url (../images/slider/slider-bl.png) 0 100% no-repeat;
}

.scroller-top {
background: url (../images/slider/slider-tm.png) 50% 0 repeat-x;
}

.scroller-top1 {
background: url (../images/slider/slider-tr.png) 100% 0 no-repeat;
}

.scroller-top2 {
background: url (../images/slider/slider-tl.png) 0 0 no-repeat;
}

.rokintroscroller-container {
background: url (../images/bg.jpg) center left repeat-x;
overflow: hidden;
padding: 0 30px;
}

.rokintroscroller-wrapper {
overflow: hidden;
}

.rokintroscroller-leftarrow {
background: url (../images/slider/slider-arrow-l.png) 0 50% no-repeat;
height: 100%;
width: 23px;
}

.rokintroscroller-rightarrow {
background: url (../images/slider/slider-arrow-r.png) 100% 50% no-repeat;
height: 100%;
width: 23px;
}

#rokintroscroller {
margin-top: 35px;
}

#rokintroscroller div {
width: 185px;
margin: 0 4px 15px 9px;
padding-left: 5px;
border-right: 1px solid #383838;
float: left;
}

#rokintroscroller div.first {
margin-left: 0;
}

#rokintroscroller div.last {
border-right: none;
margin-right: 0;
padding-right: 0;
}

#rokintroscroller div div.rokintroscroller-image,
#rokintroscroller div div.rokintroscroller-caption,
#rokintroscroller div div.rokintroscroller-readmore {
border: 0;
margin: 0;
padding: 0;
}

#rokintroscroller h3 {
font-size: 12px;
font-weight: normal;
margin: 10px 0 2px;
color: #efefef;
}


#rokintroscroller p {
font-size: 11px;
font-weight: normal;
margin: 0 0 8px;
}

#rokintroscroller h4 {
margin: 6px 0 0 0;
font-size: 100%;
color: #999;
}

/* @end */

div.content-bar-text {
font-family: Helvetica, Geneva, Arial;
text-transform: uppercase;
text-indent: 15px;
line-height: 29px;
font-weight: bold;
}

div.content-bar-text2 {
font-family: Helvetica, Geneva, Arial;
text-transform: uppercase;
text-indent: 15px;
line-height: 29px;
font-weight: bold;
}

div.copyright {
padding-top: 24px;
color: #666;
}

.tool-tip {
background: #101010;
border: 1px solid #202020;
padding: 4px;
color: #ccc;
}

/* demo content stuff */
/* can be deleted */

div.rotator-demo-text {
position: absolute;
top: 185px;
left: 20px;
width: 350px;
}

span.rotator-demo-header {
line-height: 100%;
font-size: 270%;
display: block;
font-weight: bold;
margin-bottom: 0px;
}

span.rotator-demo-desc {
font-size: 140%;
line-height: 130%;
color: #fff;
}
*

profiX0808

  • Захожу иногда
  • 497
  • 70 / 0
Re: модуль
« Ответ #6 : 16.08.2009, 09:40:08 »
Так а что их  смотреть если нет циферных данных...которыми можно изменить размер..
если нет "циферных данных", то и ограничений не будет, значет "размерности" модуля смотрите :)
ну вот например...

#showcase2 {
   width: 236px;
float: right;
   overflow: hidden;
}
*

aser

  • Осваиваюсь на форуме
  • 48
  • 2 / 0
Re: модуль
« Ответ #7 : 17.08.2009, 09:08:30 »
Этот параметр меняет растояние от правой стенки
Код
#showcase2 {
   width: 236px;
float: right;
   overflow: hidden;
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

модуль Newsflash: как вывести дату?

Автор joomloid

Ответов: 5
Просмотров: 3589
Последний ответ 03.04.2019, 12:25:27
от pH43
Как отредактировать модуль mod_yoo_slider?

Автор vitaliy4us

Ответов: 0
Просмотров: 2496
Последний ответ 06.12.2017, 16:14:45
от vitaliy4us
Модуль "Случайное изображение"

Автор irina 4444

Ответов: 16
Просмотров: 8430
Последний ответ 26.05.2017, 12:47:56
от gvg
Стандартный модуль Авторизации расположить горизонтально

Автор reg-ad-site

Ответов: 34
Просмотров: 9615
Последний ответ 17.04.2017, 12:53:45
от speedrage
Как вызвать модуль с текстом, если не работает админка?

Автор kirill-juk

Ответов: 2
Просмотров: 2269
Последний ответ 19.11.2016, 00:43:18
от SeBun