There is this html markup:
<a href="#" class="butt_lang f_left">en</a> <ul class="lang_list"> <li> <a href="#" class="top_lang">de</a> </li> <li> <a href="#" class="top_lang">fr</a> </li> <li> <a href="#" class="top_lang">ru</a> </li> <li> <a href="#" class="top_lang">esp</a> </li> </ul> And css:
.butt_lang { background: rgba(0, 0, 0, 0) url("../img/polygon.png") no-repeat scroll 33px 20px; display: block; height: 50px; line-height: 40px; text-align: center; width: 40px; &:hover .lang_list { display: block; width: 25px; float: left; } } .lang_list { display: none; } The problem is that when hover on butt_lang, lang_list is not displayed. What could be the problem? thank