Jump to content
  • 0

Подсветка пунктов многоуровневого меню


buck2006
 Share

Question

Есть стандартное многоуровневое меню в Joomla 2.5

Как подсветить активный пункт? Имеется в виду, что если я например выбираю Пункт1->Пункт1.1->Пункт1.1.1, то чтобы все они подсвечивались, а остальные пункты оставались с прежним цветом.

Тут есть такой код:


<li class="item-109 active deeper parent">

Можно ли как-нибудь через css прописать с помощью классов active эту подсветку?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Эх, и опять-таки разобрался сам.

Правда сделал не с помощью css, а с помощью JS

Держите, кому интересно:


try{
var el=document.getElementsByClassName("active");
for(var i=0;i<el.length; i++)
{
var link = (el[i].getElementsByTagName('a')[0]);
if (link != null)
{
link.style.color = "#000000";
}
}
}catch(e){}

Edited by buck2006
Link to comment
Share on other sites

  • 0

Не канает

Если написать так:


.active a
{
color:#000000;
}

Так как у нас структура примерно такая:


<ul>
<li>
<a href="...">Пункт1</a>
</li>
<li>
<a href="...">Пункт2</a>
</li>
<li class="active">
<a href="...">Пункт3</a>
<ul>
<li class="active">
<a href="...">Пункт3.1</a>
</li>
<li>
<a href="...">Пункт3.2</a>
</li>
<li>
<a href="...">Пункт3.3</a>
</li>
</ul>
</li>
<li>
<a href="...">Пункт4</a>
</li>
<li>
<a href="...">Пункт5</a>
</li>
<li>
<a href="...">Пункт6</a>
</li>
</ul>

То тогда в выбранном пункте все дочерние пункты тоже будут подсвечиваться.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy