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

kuraltay-khan

  • Захожу иногда
  • 54
  • 0 / 0
Многоуровневое меню
« : 16.03.2012, 14:11:24 »
« Последнее редактирование: 16.03.2012, 14:41:30 от kuraltay-khan »
*

nixsystem

  • Захожу иногда
  • 207
  • 10 / 0
Re: Многоуровневое меню
« Ответ #1 : 16.03.2012, 22:39:02 »
Редактированием CSS тут ничего не сделаешь, к сожалению, потому что по логике этого меню, пункты ничем не отличаются - соответственно к ним невозможно применить разные стили.
Выбираете пункт меню первого уровня, если он содержит в себе другие уровни и раскрывается - то эти подуровни являются дочерними. Как только вы переходите на дочерний пункт меню - по логике вашей он должен остаться дочерним, а вот по логике этого меню - он становится родительским и по понятным причинам сливается с теми пунктами что находятся выше.

Возможно что-то изменится если поэкспериментировать с настройками этого меню в админке, но это уже только методом научного тыка.
*

softman_xp

  • Захожу иногда
  • 318
  • 32 / 0
  • Разработка для Joomla
Re: Многоуровневое меню
« Ответ #2 : 16.03.2012, 22:47:26 »
Цитировать
Редактированием CSS тут ничего не сделаешь
да ладно?  :o

kuraltay-khan, не изучал представленный код, но... а чем не подходит
.menu li{} - корневой уровень
.menu li ul li{} - 2й уровень
.menu li ul li ul li{} - 3й уровень
...к примеру
в вашем случае наверное #pillmenu li ul li{} так будет ?
Компоненты/модули/плагины для Joomla
(skype: navipoint)(mail: softman(собака)inbox(точка)ru)
*

nixsystem

  • Захожу иногда
  • 207
  • 10 / 0
Re: Многоуровневое меню
« Ответ #3 : 16.03.2012, 22:52:49 »
Подходит оно прекрасно если генерится HTML вида
Спойлер
[свернуть]

А если при переходе вниз по меню - верхние уровни схлопываются и там просто нет вложенных двухуровневых <ul><li> ?

Да, действительно недосмотрел, HTML вывод там правльный, сейчас перепроверил - все как надо выдается. Тогда - добавить пару-тройку классов и все получится )
« Последнее редактирование: 16.03.2012, 22:55:52 от nixsystem »
*

softman_xp

  • Захожу иногда
  • 318
  • 32 / 0
  • Разработка для Joomla
Re: Многоуровневое меню
« Ответ #4 : 16.03.2012, 23:01:43 »
А как иначе сгенерить вложенное меню, если не вложенными тегами ?

Цитировать
уровни схлопываются
нет вложенных ul - значит нет второго уровня

или я чего-то недопонимаю
Компоненты/модули/плагины для Joomla
(skype: navipoint)(mail: softman(собака)inbox(точка)ru)
*

kuraltay-khan

  • Захожу иногда
  • 54
  • 0 / 0
Re: Многоуровневое меню
« Ответ #5 : 17.03.2012, 13:32:44 »
...так подскажите код как это сделать, как в HTML сделать я знаю, а тут вот нет... :(
*

softman_xp

  • Захожу иногда
  • 318
  • 32 / 0
  • Разработка для Joomla
Re: Многоуровневое меню
« Ответ #6 : 17.03.2012, 13:45:51 »
kuraltay-khan, если меню стандартное и в настройках модуля не стоит суффикс класса меню, то просто в CSS добавьте классы, которые я описал выше, ну и нужные свойства им пропишите
вот вам в помощь
Компоненты/модули/плагины для Joomla
(skype: navipoint)(mail: softman(собака)inbox(точка)ru)
*

kuraltay-khan

  • Захожу иногда
  • 54
  • 0 / 0
Re: Многоуровневое меню
« Ответ #7 : 17.03.2012, 19:13:58 »
...ещё вопрос ос схожем меню: разложилось оно в список http://altaifitomarket.ru/ не могу найти где повредили что так случилось... :(
*

softman_xp

  • Захожу иногда
  • 318
  • 32 / 0
  • Разработка для Joomla
Re: Многоуровневое меню
« Ответ #8 : 17.03.2012, 20:08:51 »
kuraltay-khan, а как надо то ? Вообще в настройках модуля меню указывается, что показывать, что нет
Компоненты/модули/плагины для Joomla
(skype: navipoint)(mail: softman(собака)inbox(точка)ru)
*

kuraltay-khan

  • Захожу иногда
  • 54
  • 0 / 0
Re: Многоуровневое меню
« Ответ #9 : 17.03.2012, 20:27:59 »
kuraltay-khan, а как надо то ? Вообще в настройках модуля меню указывается, что показывать, что нет


...чтоб подуровни обратно сложились...
*

softman_xp

  • Захожу иногда
  • 318
  • 32 / 0
  • Разработка для Joomla
Re: Многоуровневое меню
« Ответ #10 : 17.03.2012, 20:52:01 »
начальный уровень: 1
последний уровень: 1
Компоненты/модули/плагины для Joomla
(skype: navipoint)(mail: softman(собака)inbox(точка)ru)
*

kuraltay-khan

  • Захожу иногда
  • 54
  • 0 / 0
Re: Многоуровневое меню
« Ответ #11 : 17.03.2012, 21:04:03 »
...можно по точнее? Привожу текст CSS

Код: css
/* begin Page */

/* Generated with Artisteer version 2.3.0.23326, file checksum is 64E48E27. */

body
{
margin: 0 auto;
padding: 0;
background-color: #E0E4D8;
background-image: url('../images/Page-BgTexture.jpg');
background-repeat: repeat-x;
background-attachment: fixed;
background-position: bottom left;
}

#art-main
{
position: relative;
width: 100%;
left: 0;
top: 0;
}

#art-page-background-glare
{
position: absolute;
width: 100%;
height: 290px;
left: 0;
top: 0;
}

#art-page-background-glare-image
{
background-image: url('../images/Page-BgGlare.png');
background-repeat: no-repeat;
height: 290px;
width: 348px;
margin: 0;
}

html:first-child #art-page-background-glare
{
border: 1px solid transparent; /* Opera fix */
}



#art-page-background-gradient
{
background-position: bottom left;
}


.cleared
{
float: none;
clear: both;
margin: 0;
padding: 0;
border: none;
font-size:1px;
}


form
{
padding:0 !important;
margin:0 !important;
}

table.position
{
position: relative;
width: 100%;
table-layout: fixed;
}
/* end Page */

/* begin Box, Sheet */
.art-Sheet
{
position:relative;
z-index:0;
margin:0 auto;
width: 1500px;
min-width:47px;
min-height:47px;
}

.art-Sheet-body
{
position: relative;
z-index: 1;
padding: 16px;
}

.art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl, .art-Sheet-tc, .art-Sheet-bc,.art-Sheet-cr, .art-Sheet-cl
{
position:absolute;
z-index:-1;
}

.art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl
{
width: 58px;
height: 58px;
background-image: url('../images/Sheet-s.png');
}

.art-Sheet-tl
{
top:0;
left:0;
clip: rect(auto, 29px, 29px, auto);
}

.art-Sheet-tr
{
top: 0;
right: 0;
clip: rect(auto, auto, 29px, 29px);
}

.art-Sheet-bl
{
bottom: 0;
left: 0;
clip: rect(29px, 29px, auto, auto);
}

.art-Sheet-br
{
bottom: 0;
right: 0;
clip: rect(29px, auto, auto, 29px);
}

.art-Sheet-tc, .art-Sheet-bc
{
left: 29px;
right: 29px;
height: 58px;
background-image: url('../images/Sheet-h.png');
}

.art-Sheet-tc
{
top: 0;
clip: rect(auto, auto, 29px, auto);
}

.art-Sheet-bc
{
bottom: 0;
clip: rect(29px, auto, auto, auto);
}

.art-Sheet-cr, .art-Sheet-cl
{
top: 29px;
bottom: 29px;
width: 58px;
background-image: url('../images/Sheet-v.png');
}

.art-Sheet-cr
{
right:0;
clip: rect(auto, auto, auto, 29px);
}

.art-Sheet-cl
{
left:0;
clip: rect(auto, 29px, auto, auto);
}

.art-Sheet-cc
{
position:absolute;
z-index:-1;
top: 29px;
left: 29px;
right: 29px;
bottom: 29px;
background-image: url('../images/Sheet-c.png');
}


.art-Sheet
{
margin-top: -16px !important;
}

#art-page-background-simple-gradient, #art-page-background-gradient, #art-page-background-glare
{
min-width:1500px;
}

/* end Box, Sheet */

/* begin Header */
div.art-Header
{
margin: 0 auto;
position: relative;
z-index:0;
width: 1468px;
height: 225px;
}


div.art-Header-jpeg
{
position: absolute;
z-index:-1;
top: 0;
left: 0;
width: 1468px;
height: 225px;
background-image: url('../images/Header.jpg');
background-repeat: no-repeat;
background-position: center center;
}
/* end Header */

/* begin Logo */
.art-Logo
{
display : block;
position: absolute;
left: 0px;
top: 81px;
width: 373px;
}

h1.art-Logo-name
{
display: block;
text-align: center;
}

h1.art-Logo-name, h1.art-Logo-name a, h1.art-Logo-name a:link, h1.art-Logo-name a:visited, h1.art-Logo-name a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 36px;
text-decoration: none;
padding:0;
margin:0;
color: #3E5418 !important;
}

.art-Logo-text
{
display: block;
text-align: center;
}

.art-Logo-text, .art-Logo-text a
{
font-family: Arial, Helvetica, Sans-Serif;
font-size: 22px;
font-style: normal;
font-weight: bold;
padding:0;
margin:0;
color: #5E7F24 !important;
}
/* end Logo */

/* begin Menu */
/* menu structure */

.art-menu a, .art-menu a:link, .art-menu a:visited, .art-menu a:hover
{
text-align:left;
text-decoration:none;
outline:none;
letter-spacing:normal;
word-spacing:normal;
}

.art-menu, .art-menu ul
{
margin: 0;
padding: 0;
border: 0;
list-style-type: none;
display: block;
}

.art-menu li
{
margin: 0;
padding: 0;
border: 0;
display: block;
float: left;
position: relative;
z-index: 5;
background:none;
}

.art-menu li:hover
{
z-index: 10000;
white-space: normal;
}

.art-menu li li
{
float: none;
}

.art-menu ul
{
visibility: hidden;
position: absolute;
z-index: 10;
left: 0;
top: 0;
background:none;
}

.art-menu li:hover>ul
{
visibility: visible;
top: 100%;
}

.art-menu li li:hover>ul
{
top: 0;
left: 100%;
}

.art-menu:after, .art-menu ul:after
{
content: ".";
height: 0;
display: block;
visibility: hidden;
overflow: hidden;
clear: both;
}
.art-menu, .art-menu ul
{
min-height: 0;
}

.art-menu ul
{
background-image: url(../images/spacer.gif);
padding: 10px 30px 30px 30px;
margin: -10px 0 0 -30px;
}

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





div.art-nav-center
{
position:relative;
float:right;
right:50%;

}

ul.art-menu
{
position:relative;
float:left;
left:50%;
}

.firefox2 ul.art-menu
{
float:none;
}


/* menu structure */

.art-menu
{
padding: 6px 3px 0px 3px;
}

.art-nav
{
position: relative;
height: 32px;
z-index: 100;
}

.art-nav .l, .art-nav .r
{
position: absolute;
z-index: -1;
top: 0;
height: 32px;
background-image: url('../images/nav.png');
}

.art-nav .l
{
left: 0;
right:0px;
}

.art-nav .r
{
right: 0;
width: 1468px;
clip: rect(auto, auto, auto, 1468px);
}


/* end Menu */

/* begin MenuItem */
.art-menu ul li
{
clear: both;
}

.art-menu a
{
position:relative;
display: block;
overflow:hidden;
height: 26px;
cursor: pointer;
text-decoration: none;
margin-right: 1px;
margin-left: 1px;
}


.art-menu a .r, .art-menu a .l
{
position:absolute;
display: block;
top:0;
z-index:-1;
height: 78px;
background-image: url('../images/MenuItem.png');
}

.art-menu a .l
{
left:0;
right:4px;
}

.art-menu a .r
{
width:408px;
right:0;
clip: rect(auto, auto, auto, 404px);
}

.art-menu a .t
{
font-family: Arial, Helvetica, Sans-Serif;
font-size: 16px;
font-style: normal;
font-weight: bold;
color: #000000;
padding: 0 9px;
margin: 0 4px;
line-height: 26px;
text-align: center;
}

.art-menu a:hover .l, .art-menu a:hover .r
{
top:-26px;
}

.art-menu li:hover>a .l, .art-menu li:hover>a .r
{
top:-26px;
}

.art-menu li:hover a .l, .art-menu li:hover a .r
{
top:-26px;
}
.art-menu a:hover .t
{
color: #080906;
}

.art-menu li:hover a .t
{
color: #080906;
}

.art-menu li:hover>a .t
{
color: #080906;
}


.art-menu a.active .l, .art-menu a.active .r
{
top: -52px;
}

.art-menu a.active .t
{
color: #1B1E15;
}


/* end MenuItem */

/* begin MenuSubItem */
.art-menu ul a
{
display:block;
text-align: center;
white-space: nowrap;
height: 20px;
width: 180px;
overflow:hidden;
line-height: 20px;
margin-right: auto;


background-image: url('../images/subitem-bg.png');
background-position: left top;
background-repeat: repeat-x;
border-width: 0px;
border-style: solid;
}

.art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
display: inline;
float: none;
margin: inherit;
padding: inherit;
background-image: none;
text-align: inherit;
text-decoration: inherit;
}

.art-menu ul a, .art-menu ul a:link, .art-menu ul a:visited, .art-menu ul a:hover, .art-menu ul a:active, .art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
text-align: left;
text-indent: 12px;
text-decoration: none;
line-height: 20px;
color: #4C671D;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 14px;
font-style: normal;
font-weight: bold;
}

.art-menu ul ul a
{
margin-left: auto;
}

.art-menu ul li a:hover
{
color: #000000;
background-position: 0 -20px;
}

.art-menu ul li:hover>a
{
color: #000000;
background-position: 0 -20px;
}

.art-nav .art-menu ul li a:hover span, .art-nav .art-menu ul li a:hover span span
{
color: #000000;
}

.art-nav .art-menu ul li:hover>a span, .art-nav .art-menu ul li:hover>a span span
{
color: #000000;
}


/* end MenuSubItem */

/* begin ContentLayout */
.art-contentLayout
{
position: relative;
margin-bottom: 5px;
width: 1468px;
}
/* end ContentLayout */

/* begin Box, Block */
.art-Block
{
position:relative;
z-index:0;
margin:0 auto;
min-width:23px;
min-height:23px;
}

.art-Block-body
{
position: relative;
z-index: 1;
padding: 7px;
}

.art-Block-tr, .art-Block-tl, .art-Block-br, .art-Block-bl, .art-Block-tc, .art-Block-bc,.art-Block-cr, .art-Block-cl
{
position:absolute;
z-index:-1;
}

.art-Block-tr, .art-Block-tl, .art-Block-br, .art-Block-bl
{
width: 22px;
height: 22px;
background-image: url('../images/Block-s.png');
}

.art-Block-tl
{
top:0;
left:0;
clip: rect(auto, 11px, 11px, auto);
}

.art-Block-tr
{
top: 0;
right: 0;
clip: rect(auto, auto, 11px, 11px);
}

.art-Block-bl
{
bottom: 0;
left: 0;
clip: rect(11px, 11px, auto, auto);
}

.art-Block-br
{
bottom: 0;
right: 0;
clip: rect(11px, auto, auto, 11px);
}

.art-Block-tc, .art-Block-bc
{
left: 11px;
right: 11px;
height: 22px;
background-image: url('../images/Block-h.png');
}

.art-Block-tc
{
top: 0;
clip: rect(auto, auto, 11px, auto);
}

.art-Block-bc
{
bottom: 0;
clip: rect(11px, auto, auto, auto);
}

.art-Block-cr, .art-Block-cl
{
top: 11px;
bottom: 11px;
width: 22px;
background-image: url('../images/Block-v.png');
}

.art-Block-cr
{
right:0;
clip: rect(auto, auto, auto, 11px);
}

.art-Block-cl
{
left:0;
clip: rect(auto, 11px, auto, auto);
}

.art-Block-cc
{
position:absolute;
z-index:-1;
top: 11px;
left: 11px;
right: 11px;
bottom: 11px;
background-color: #E2E6DB;
}


.art-Block
{
margin: 5px;
}

/* end Box, Block */

/* begin BlockHeader */
.art-BlockHeader
{
position:relative;
z-index:0;
height: 30px;
padding: 0 7px;
margin-bottom: 4px;
}

.art-BlockHeader .t
{
height: 30px;
color: #000000;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 14px;
font-style: normal;
font-weight: bold;
white-space : nowrap;
padding: 0 6px;
line-height: 30px;
}

.art-BlockHeader .l, .art-BlockHeader .r
{
display:block;
position:absolute;
z-index:-1;
height: 30px;
background-image: url('../images/BlockHeader.png');
}

.art-BlockHeader .l
{
left:0;
right:10px;
}

.art-BlockHeader .r
{
width:1488px;
right:0;
clip: rect(auto, auto, auto, 1478px);
}





.art-header-tag-icon
{
    height: 30px;
background-position:left top;
background-image: url('../images/BlockHeaderIcon.png');
padding:0 0 0 12px;
background-repeat: no-repeat;
min-height: 12px;
margin: 0 0 0 5px;
}


/* end BlockHeader */

/* begin Box, BlockContent */
.art-BlockContent
{
position:relative;
z-index:0;
margin:0 auto;
min-width:1px;
min-height:1px;
}

.art-BlockContent-body
{
position: relative;
z-index: 1;
padding: 8px;
}



.art-BlockContent-body
{
color:#000000;
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 16px;
}

.art-BlockContent-body a:link
{
color: #759F2D;
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 14px;
font-style: normal;
font-weight: bold;
text-decoration: none;
}

.art-BlockContent-body a:visited, .art-BlockContent-body a.visited
{
color: #869669;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 14px;
text-decoration: underline;
}

.art-BlockContent-body a:hover, .art-BlockContent-body a.hover
{
color: #89A02C;
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: none;
}

.art-BlockContent-body ul
{
list-style-type: none;
color: #000000;
margin:0;
padding:0;
}

.art-BlockContent-body ul li
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 14px;
line-height: 125%;
  line-height: 1.25em;
  padding: 0px 0 0px 14px;
  background-image: url('../images/BlockContentBullets.png');
  background-repeat: no-repeat;
}

/* end Box, BlockContent */

/* begin Box, Post */
.art-Post
{
position:relative;
z-index:0;
margin:0 auto;
min-width:1px;
min-height:1px;
}

.art-Post-body
{
position: relative;
z-index: 1;
padding: 3px;
}



.art-Post
{
margin: 7px;
}

/* Start images */
a img
{
border: 0;
}

.art-article img, img.art-article
{
border: solid 1px #D8E6A3;
margin: 1em;
}

.art-metadata-icons img
{
border: none;
vertical-align: middle;
margin: 2px;
}
/* Finish images */

/* Start tables */

.art-article table, table.art-article
{
border-collapse: collapse;
margin: 1px;
width:auto;
}

.art-article table, table.art-article .art-article tr, .art-article th, .art-article td
{
background-color:Transparent;
}

.art-article th, .art-article td
{
padding: 2px;
border: solid 1px #9CA984;
vertical-align: top;
text-align:left;
}

.art-article th
{
text-align: center;
vertical-align: middle;
padding: 7px;
}

/* Finish tables */

pre
{
overflow: auto;
padding: 0.1em;
}

/* end Box, Post */

/* begin PostMetadata */
.art-PostMetadataHeader
{
padding:1px;
background-color: #DCEDBF;
border-color: #D8E6A3;
border-style: solid;
border-width: 1px;
}
/* end PostMetadata */

/* begin PostHeaderIcon */
.art-PostHeader
{
text-decoration:none;
margin: 0.2em 0;
padding: 0;
font-weight:normal;
font-style:normal;
letter-spacing:normal;
word-spacing:normal;
font-variant:normal;
text-decoration:none;
font-variant:normal;
text-transform:none;
text-align:left;
text-indent:0;
line-height:inherit;
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 18px;
font-style: normal;
font-weight: bold;
color: #000000;
}

.art-PostHeader a, .art-PostHeader a:link, .art-PostHeader a:visited, .art-PostHeader a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 18px;
font-style: normal;
font-weight: bold;
margin:0;
color: #000000;
}

/* end PostHeaderIcon */

/* begin PostHeader */
.art-PostHeader a:link
{
font-family: "Times New Roman", Georgia, Times, Serif;
text-decoration: none;
text-align: left;
  color: #435B1A;
}

.art-PostHeader a:visited, .art-PostHeader a.visited
{
font-family: "Times New Roman", Georgia, Times, Serif;
text-decoration: none;
text-align: left;
  color: #3E4530;
}

.art-PostHeader a:hover, .art-PostHeader a.hovered
{
font-family: "Times New Roman", Georgia, Times, Serif;
text-decoration: underline;
text-align: left;
  color: #000000;
}
/* end PostHeader */

/* begin PostIcons */
.art-PostHeaderIcons
{
padding:1px;
}

.art-PostHeaderIcons, .art-PostHeaderIcons a, .art-PostHeaderIcons a:link, .art-PostHeaderIcons a:visited, .art-PostHeaderIcons a:hover
{
font-family: Arial, Helvetica, Sans-Serif;
font-style: italic;
font-weight: normal;
color: #000000;
}

.art-PostHeaderIcons a, .art-PostHeaderIcons a:link, .art-PostHeaderIcons a:visited, .art-PostHeaderIcons a:hover
{
margin:0;
}

.art-PostHeaderIcons a:link
{
font-family: Arial, Helvetica, Sans-Serif;
font-style: italic;
font-weight: normal;
text-decoration: underline;
color: #587722;
}

.art-PostHeaderIcons a:visited, .art-PostHeaderIcons a.visited
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: underline;
color: #587722;
}

.art-PostHeaderIcons a:hover, .art-PostHeaderIcons a.hover
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: none;
color: #515A3F;
}
/* end PostIcons */

/* begin PostContent */
/* Content Text Font & Color (Default) */
body
{
font-family: Arial, Helvetica, Sans-Serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
  color: #262A1D;
}

.art-PostContent
{
font-family: Arial, Helvetica, Sans-Serif;
font-size: 14px;
text-align: justify;
  color: #262A1D;
}

/* Start Content link style */
/*
The right order of link pseudo-classes: Link-Visited-Hover-Focus-Active.
http://www.w3schools.com/CSS/css_pseudo_classes.asp
http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states/
*/
a
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: underline;
  color: #5B7B23;
}

/* Adds special style to an unvisited link. */
a:link
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: underline;
  color: #5B7B23;
}

/* Adds special style to a visited link. */
a:visited, a.visited
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: underline;
  color: #383F2C;
}

/* :hover - adds special style to an element when you mouse over it. */
a:hover, a.hover
{
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: none;
  color: #22280B;
}

/* Finish Content link style */

/* Resert some headings default style & links default style for links in headings*/
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited
{
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
}


/* Start Content headings Fonts & Colors  */
h1, h1 a, h1 a:link, h1 a:visited, h1 a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 24px;
font-style: normal;
font-weight: bold;
text-align: left;
  color: #5B7B23;
}

h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 22px;
text-align: left;
  color: #5B7B23;
}

h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 18px;
font-style: normal;
font-weight: bold;
text-align: left;
  color: #5B7B23;
}

h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 20px;
text-align: left;
  color: #000000;
}

h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 16px;
text-align: left;
  color: #000000;
}

h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 14px;
text-align: left;
  color: #000000;
}
/* Finish Content headings Fonts & Colors  */


/* end PostContent */

/* begin PostBullets */
/* Start Content list */
ol, ul
{
color: #3E5418;
margin:1em 0 1em 2em;
padding:0;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 11px;
}

li ol, li ul
{
margin:0.5em 0 0.5em 2em;
padding:0;
}

li
{
margin:0.2em 0;
padding:0;
}

ul
{
list-style-type: none;
}

ol
{
list-style-position:inside;

}



/* Finish Content list */
/* end PostBullets */

/* begin PostQuote */
/* Start blockquote */
blockquote,
blockquote p,
.art-PostContent blockquote p
{
color:#181C08;
font-family: Arial, Helvetica, Sans-Serif;
text-align: left;
}

blockquote,
.art-PostContent blockquote
{
border:solid 1px #D8E6A3;
margin:10px 10px 10px 50px;
padding:5px 5px 5px 41px;
background-color:#F2F6DF;
background-image:url('../images/PostQuote.png');
background-position:left top;
background-repeat:no-repeat;
}


/* Finish blockuote */
/* end PostQuote */

/* begin Button */
.art-button-wrapper .art-button
{
display:inline-block;
width: auto;
outline:none;
border:none;
background:none;
line-height:28px;
margin:0 !important;
padding:0 !important;
overflow: visible;
cursor: default;
text-decoration: none !important;
z-index:0;
vertical-align: middle;
}

.art-button img, .art-button-wrapper img
{
  margin: 0;
}

.art-button-wrapper
{
display:inline-block;
vertical-align: middle;
position:relative;
height: 28px;
overflow:hidden;
white-space: nowrap;
width: auto;
z-index:0;
}

.firefox2 .art-button-wrapper
{
display:block;
float:left;
}

.art-button-wrapper .art-button
{
display:block;
height: 28px;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
white-space: nowrap;
text-align: left;
padding: 0 14px !important;
line-height: 28px;
text-decoration: none !important;
color: #000000 !important;
}

input, select
{
  vertical-align: middle;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
}

.art-button-wrapper.hover .art-button, .art-button:hover
{
color: #59681D !important;
text-decoration: none !important;
}

.art-button-wrapper.active .art-button
{
color: #F3F5F0 !important;
}

.art-button-wrapper .l, .art-button-wrapper .r
{
display:block;
position:absolute;
z-index:-1;
height: 84px;
background-image: url('../images/Button.png');
}

.art-button-wrapper .l
{
left:0;
right:11px;
}

.art-button-wrapper .r
{
width:415px;
right:0;
clip: rect(auto, auto, auto, 404px);
}

.art-button-wrapper.hover .l, .art-button-wrapper.hover .r
{
top: -28px;
}

.art-button-wrapper.active .l, .art-button-wrapper.active .r
{
top: -56px;
}


/* end Button */

/* begin Footer */
.art-Footer
{
position:relative;
z-index:0;
overflow:hidden;
width: 1468px;
margin: 5px auto 0px auto;
}

.art-Footer .art-Footer-inner
{
height:1%;
position: relative;
z-index: 0;
padding: 15px;
text-align: center;
}

.art-Footer .art-Footer-background
{
position:absolute;
z-index:-1;
background-repeat:no-repeat;
background-image: url('../images/Footer.png');
width: 1468px;
height: 150px;
bottom:0;
left:0;
}


.art-rss-tag-icon
{
position: relative;
display:block;
float:left;
background-image: url('../images/livemarks.png');
background-position: center right;
background-repeat: no-repeat;
margin: 0 5px 0 0;
height: 27px;
width: 26px;
    cursor: default;
}




.art-Footer .art-Footer-text p
{
margin: 0;
}

.art-Footer .art-Footer-text
{
display:inline-block;
color:#495138;
font-family: Arial, Helvetica, Sans-Serif;
letter-spacing: 1px;
}

.art-Footer .art-Footer-text a:link
{
text-decoration: none;
color: #515A3F;
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: underline;
}

.art-Footer .art-Footer-text a:visited
{
text-decoration: none;
color: #6C7854;
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: underline;
}

.art-Footer .art-Footer-text a:hover
{
text-decoration: none;
color: #F8FBEF;
font-family: Arial, Helvetica, Sans-Serif;
text-decoration: none;
}
/* end Footer */

/* begin PageFooter */
.art-page-footer, .art-page-footer a, .art-page-footer a:link, .art-page-footer a:visited, .art-page-footer a:hover
{
font-family:Arial;
font-size:10px;
letter-spacing:normal;
word-spacing:normal;
font-style:normal;
font-weight:normal;
text-decoration:underline;
color:#759F2D;
}

.art-page-footer
{
margin:1em;
text-align:center;
text-decoration:none;
color:#8E9D72;
}
/* end PageFooter */

/* begin LayoutCell */
.art-contentLayout .art-sidebar1
{
position: relative;
margin: 0;
padding: 0;
border: 0;
float: left;
overflow: hidden;
width: 293px;
}
/* end LayoutCell */

/* begin LayoutCell */
.art-contentLayout .art-content
{
position: relative;
margin: 0;
padding: 0;
border: 0;
float: left;
overflow: hidden;
width: 880px;
}
.art-contentLayout .art-content-sidebar1
{
position: relative;
margin: 0;
padding: 0;
border: 0;
float: left;
overflow: hidden;
width: 1173px;
}
.art-contentLayout .art-content-sidebar2
{
position: relative;
margin: 0;
padding: 0;
border: 0;
float: left;
overflow: hidden;
width: 1173px;
}
.art-contentLayout .art-content-wide
{
position: relative;
margin: 0;
padding: 0;
border: 0;
float: left;
overflow: hidden;
width: 1466px;
}
/* end LayoutCell */

/* begin LayoutCell */
.art-contentLayout .art-sidebar2
{
position: relative;
margin: 0;
padding: 0;
border: 0;
float: left;
overflow: hidden;
width: 293px;
}
/* end LayoutCell */



table.moduletable th
{
font-size: 140%;
padding: .5em 0em;
}

.firefox2 table.poll tr td div
{
font-size:0;
}

#footer
{
text-align: center;
}

.breadcrumbs
{
display: block;
padding: .7em 0em;
}

.contentpaneopen span.small, .contentpaneopen td.createdate, .contentpaneopen td.modifydate
{
font-size: 75%;
padding-bottom: 1em;
}

.column_separator
{
padding-left: .4em;
}

.pagination span
{
padding: 2px;
}

.pagination a
{
padding: 2px;
}

div.offline
{
background: #fffebb;
width: 100%;
position: absolute;
top: 0;
left: 0;
font-size: 1.2em;
padding: 5px;
}

span.pathway
{
display: block;
margin: 0 20px;
overflow: hidden;
}

/* headers */
table.moduletable th, legend
{
margin: 0;
font-weight: bold;
font-family: Helvetica,Arial,sans-serif;
font-size: 1.5em;
padding-left: 0px;
margin-bottom: 10px;
text-align: left;
}

/* form validation */
.invalid
{
border-color: #ff0000;
}

label.invalid
{
color: #ff0000;
}


/** overlib **/

.ol-foreground
{
background-color: #f6f6f6;
}

.ol-background
{
background-color: #666;
}

.ol-textfont
{
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
}

.ol-captionfont
{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #f6f6f6;
font-weight: bold;
}

.ol-captionfont a
{
color: #0B55C4;
text-decoration: none;
font-size: 12px;
}

/* spacers */
span.article_separator
{
display: none;
}

.column_separator
{
padding-left: 10px;
}

td.buttonheading img
{
border: none;
}

.clr
{
clear: both;
}

div#maindivider
{
border-top: 1px solid #ddd;
margin-bottom: 10px;
overflow: hidden;
height: 1px;
}

table.blog span.article_separator
{
display: none;
}

/* edit button */
.contentpaneopen_edit
{
float: left;
}

/* table of contents */
table.contenttoc
{
margin: 5px;
border: 1px solid #ccc;
padding: 5px;
float: right;
}

table.contenttoc td
{
padding: 0 5px;
}


/* content tables */
td.sectiontableheader
{
background: #efefef;
color: #333;
font-weight: bold;
padding: 4px;
border-right: 1px solid #fff;
}

tr.sectiontableentry0 td,
tr.sectiontableentry1 td,
tr.sectiontableentry2 td
{
padding: 4px;
}

td.sectiontableentry0,
td.sectiontableentry1,
td.sectiontableentry2
{
padding: 3px;
}


/* content styles */
table.contentpaneopen, table.contentpane
{
margin: 0;
padding: 0;
width: auto;
}

table.contentpaneopen li
{
margin-bottom: 5px;
}

table.contentpaneopen fieldset
{
border: 0;
border-top: 1px solid #ddd;
}

table.contentpaneopen h3
{
margin-top: 25px;
}

table.contentpaneopen h4
{
font-family: Arial, Helvetica, sans-serif;
color: #333;
}

.highlight
{
background-color: #fffebb;
}

/* module control elements */
table.user1user2 div.moduletable
{
margin-bottom: 0px;
}

div.moduletable, div.module
{
margin-bottom: 25px;
}

div.module_menu h3
{
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;
font-weight: bold;
color: #eee;
margin: -23px -4px 5px -5px;
padding-left: 10px;
padding-bottom: 2px;
}

div.module_menu
{
margin: 0;
padding: 0;
margin-bottom: 15px;
}

div.module_menu div div div
{
padding: 10px;
padding-top: 30px;
padding-bottom: 15px;
width: auto;
}

div.module_menu div div div div
{
background: none;
padding: 0;
}

div.module_menu ul
{
margin: 10px 0;
padding-left: 20px;
}

div.module_menu ul li a:link, div.module_menu ul li a:visited
{
font-weight: bold;
}

#leftcolumn div.module
{
padding: 0 10px;
}

#leftcolumn div.module table
{
width: auto;
}

/* forms */
table.adminform textarea
{
width: 540px;
height: 400px;
font-size: 1em;
color: #000099;
}

div.search input
{
width: 145px;
border: 1px solid #ccc;
margin: 15px 0 10px 0;
}

form#form-login
{
text-align: left;
}

form#form-login fieldset
{
border: 0 none;
margin: 0;
padding: 0.2em;
}

form#form-login ul
{
list-style-type: none;
margin: 0;
padding: 0;
}

form#form-login ul li
{
background-image: none;
padding: 0;
}

#modlgn_username, #modlgn_passwd
{
width: 90%;
}

#form-login-username, #form-login-password, #form-login-remember
{
display: block;
margin: 0;
}

form#com-form-login
{
text-align: left;
}

form#com-form-login fieldset
{
border: 0 none;
margin: 0;
padding: 0.2em;
}

form#com-form-login ul
{
list-style-type: none;
margin: 0;
padding: 0;
}

form#com-form-login ul li
{
background-image: none;
padding: 0;
}

/* thumbnails */
div.mosimage
{
margin: 5px;
}

div.mosimage_caption {
font-size: .90em;
color: #666;
}

div.caption
{
padding: 0 10px 0 10px;
}

div.caption img
{
border: 1px solid #CCC;
}

div.caption p
{
font-size: .90em;
color: #666;
text-align: center;
}

/* Parameter Table */
table.paramlist
{
margin-top: 5px;
}

table.paramlist td.paramlist_key
{
width: 128px;
text-align: left;
height: 30px;
}

div.message
{
font-weight: bold;
font-size: 14px;
color: #c30;
text-align: center;
width: auto;
background-color: #f9f9f9;
border: solid 1px #d5d5d5;
margin: 3px 0px 10px;
padding: 3px 20px;
}

/* Banners module */

/* Default skyscraper style */
.banneritem img
{
display: block;
margin-left: auto;
margin-right: auto;
}

/* Text advert style */

.banneritem_text
{
padding: 4px;
font-size: 11px;
}

.bannerfooter_text
{
padding: 4px;
font-size: 11px;
background-color: #f7f7f7;
text-align: right;
}

/* System Messages */
/* see system general.css */

.pagination span
{
padding: 2px;
}

.pagination a
{
padding: 2px;
}

/* Polls */
.pollstableborder
{
margin-top: 8px;
}


.pollstableborder td
{
text-align: left;

}

/* WebLinks */
span.description
{
display: block;
padding-left: 30px;
}

/* Frontend Editing*/
fieldset
{
border: 1px solid #ccc;
margin-top: 15px;
padding: 15px;
}

legend
{
margin: 0;
padding: 0 10px;
}

td.key
{
border-bottom: 1px solid #eee;
color: #666;
}

/* Tooltips */

.tool-tip
{
float: left;
background: #ffc;
border: 1px solid #d4d5aa;
padding: 5px;
max-width: 200px;
}

.tool-title
{
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../../system/images/selector-arrow.png) no-repeat;
}

.tool-text
{
font-size: 100%;
margin: 0;
}

/* System Standard Messages */
#system-message
{
margin-bottom: 20px;
}

#system-message dd.message ul
{
background: #c3d2e5 url(../../system/images/notice-info.png) 4px center no-repeat;
border-top: 3px solid #de7a7b;
border-bottom: 3px solid #de7a7b;
margin:0px;
padding-left: 40px;
text-indent:0px;
}

/* System Error Messages */
#system-message dd.error ul
{
color: #c00;
background: #e6c0c0 url(../../system/images/notice-alert.png) 4px center no-repeat;
border-top: 3px solid #DE7A7B;
border-bottom: 3px solid #DE7A7B;
margin: 0px;
padding-left: 40px;
text-indent: 0px;
}

/* System Notice Messages */
#system-message dd.notice ul
{
color: #c00;
background: #efe7b8 url(../../system/images/notice-note.png) 4px center no-repeat;
border-top: 3px solid #f0dc7e;
border-bottom: 3px solid #f0dc7e;
margin: 0px;
padding-left: 40px;
text-indent: 0px;
 }

#syndicate
{
float: left;
padding-left: 25px;
}

/* Component Specific Fixes */

#component-contact table td
{
padding: 2px 0;
}

.breadcrumbs img
{
margin: 0px;
padding: 0px;
border: 0px;
}

.mceToolbarTop {
white-space: normal;
}

.mceEditor
{
background: none;
}

#archive-list
{
list-style-type: none;
margin: 0px;
padding: 0px;
}

#archive-list li
{
list-style-type: none;
background-image: none;
margin-left: 0px;
padding-left: 0px;
}

#navigation
{
text-align: center;
}

.article h3 img
{
border: none;
display: inline;
margin: 0;
padding: 0;
}

.art-Footer-text .moduletable
{
border: none;
margin: 0;
padding: 0;
}

.pollstableborder td {
vertical-align: middle;
}

.img_caption.left
{
float: left;
margin-right: 1em;
}

.img_caption.right
{
float: right;
margin-left: 1em;
}

.img_caption.left p
{
clear: left;
text-align: center;
}

.img_caption.right p
{
clear: right;
text-align: center;
}

.img_caption img
{
margin: 0em;
}

.contentheading
{
font-family: "Times New Roman", Georgia, Times, Serif;
font-size: 18px;
font-style: normal;
font-weight: bold;
text-align: left;
color: #5B7B23;
}

/* Plugin compatilibity. */

/* 152316, DOCman */

.dm_taskbar ul
{
background-image: none;
margin: 0px;
padding: 0px;
}

.dm_taskbar ul li
{
background-image: none;
}

*

softman_xp

  • Захожу иногда
  • 318
  • 32 / 0
  • Разработка для Joomla
Re: Многоуровневое меню
« Ответ #12 : 17.03.2012, 21:12:55 »
в админке сайта есть раздел "модули", нужно выбрать модуль который выводит меню и настроить на свой вкус
Компоненты/модули/плагины для Joomla
(skype: navipoint)(mail: softman(собака)inbox(точка)ru)
*

kuraltay-khan

  • Захожу иногда
  • 54
  • 0 / 0
Re: Многоуровневое меню
« Ответ #13 : 17.03.2012, 21:29:13 »
в админке сайта есть раздел "модули", нужно выбрать модуль который выводит меню и настроить на свой вкус

...спасибо, нашёл - плохо кто-то ещё по админке шарится с кривыми ручками и молча, а потом ищешь вчерашний день... :(
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

Ширина меню

Автор alex86r93

Ответов: 5
Просмотров: 4847
Последний ответ 14.06.2018, 05:13:50
от KANEGI
как сделать кнопки меню!

Автор Millenium_3000

Ответов: 10
Просмотров: 11362
Последний ответ 17.08.2017, 17:24:12
от Intrande
Вопрос по добавлению тега в МЕНЮ j 1.5

Автор berTalino

Ответов: 12
Просмотров: 4575
Последний ответ 29.03.2017, 16:20:43
от berTalino
Как увеличить ширину левого меню?

Автор afina2009

Ответов: 8
Просмотров: 2667
Последний ответ 09.04.2016, 23:00:36
от afina2009
Плавный якорь из меню на Jquery

Автор Timerlan

Ответов: 19
Просмотров: 3380
Последний ответ 04.02.2016, 03:54:16
от Fedor Vlasenko