Fawky
Fawky

Reputation: 41

Drop Down menu going up instead of down

Somehow my drop down menu isn't going down but is going to the top: http://fawky.de/fawky/powerbikes/index.html This is my full CSS, is something blocking it from going down? Using top:50px; didn't work either.

http://pastebin.com/YqifT4JW

Thanks.

Upvotes: 2

Views: 4902

Answers (2)

Helstein
Helstein

Reputation: 330

First of all remove position:absolute from .topmenu li. Then you should use visibility: hidden; instead of display: none; to hide the submenus. This way the submenu is hidden but the space for it is reserved (more info)

Upvotes: 1

Pencho Ilchev
Pencho Ilchev

Reputation: 3241

remove position:absolute from .topmenu li

Upvotes: 0

Related Questions