Why can't I click on this menu? [closed]
Clicking will not work. Checked source, list is populated with PHP.
It's because your padding on the div on the right is overlaying the left div containing your select:
.right {
float: left;
padding-left: 220px; // <- This line
position: absolute;
top: 58px;
}
精彩评论