Reputation: 449
Currently the last item of the menu seems to almost appear behind the white area however that is not the case. At first I thought it was a z-index issue but after some more digging I managed to figure out that it was the overflow. I have tried changing the overflow to none however it breaks the entire layout. Does anyone else have any suggestions?
http://www.hamiltonseniorcity.com/
Upvotes: 0
Views: 448
Reputation: 7356
Remove:
#outer > header .navigation > ul {
overflow: hidden;
}
#outer > header .navigation ul > li.housing {
line-height: 51px;
}
Update:
#outer > header .navigation > ul > li > ul {
position: absolute;
}
Upvotes: 1