Note that there are some explanatory texts on larger screens.

plurals
  1. PODropdown Menu with hover on li using html/css
    text
    copied!<p>I'm creating a website based on Joomla. I got a menu with 5 menu items. On the last menu item, I should have a dropdown which has the same effect as the parent menu. OK, it sounds strange, so i explain it with images and code :)</p> <p>HTML code created by joomla:</p> <pre><code>&lt;div id="navi"&gt; &lt;ul class="menu"&gt; &lt;li class="item-110"&gt;&lt;a href="/joomla/" &gt;Item 1&lt;/a&gt;&lt;/li&gt; &lt;li class="item-102"&gt;&lt;a href="/joomla/index.php/item2" &gt;Item 2&lt;/a&gt;&lt;/li&gt; &lt;li class="item-103"&gt;&lt;a href="/joomla/index.php/item3" &gt;Item 3&lt;/a&gt;&lt;/li&gt; &lt;li class="item-104"&gt;&lt;a href="/joomla/index.php/item4" &gt;Item 4&lt;/a&gt;&lt;/li&gt; &lt;li class="item-105 current active deeper parent"&gt;&lt;a href="/joomla/index.php/item5" &gt;Item 5&lt;/a&gt; &lt;ul&gt; &lt;li class="item-107"&gt;&lt;a href="/joomla/index.php/item5/subitem1" &gt;Subitem 1&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;!-- navi end --&gt; </code></pre> <p>CSS Code by me:</p> <pre><code>#navi li.item-105{ background-image:url(../images/jugend_blau.png); background-repeat:no-repeat; background-position:center; display:block; } #navi li.item-105:hover{ background-color:#0347b6; background-image:url(../images/jugend_grau.png); background-repeat:no-repeat; } #navi li.item-105 a{ width:212px; height:24px; display:block; padding-top:76px; } #navi li.item-105:hover a{ color:white; } ul.menu ul{ padding-top:2px; display:none; } ul.menu ul li{ width:210px !important; height:25px !important; background:#e0e2e2 !important; } ul.menu li:hover&gt;ul{ display:block; } ul.menu ul li.item-107:hover{ background:#0347b6 !important; display:block; } </code></pre> <p>If I hover over "Item 5", the hover for "Item 5" is correct and the dropdown is openened. Just as I want. But if now hover over "Subitem 1" the hover for "Item 5" doesn't disappear... Sorry that I cant upload a picture of my menu, i got too few reputation >.&lt;</p> <p>Has anyone an idea? I hope you know what I mean :)</p> <p>Cheers</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload