I have problem in displaying drop-down menu. Please, see the example on:
http://staging.gwynconsulting.com/rif/hello-world-2/
When I hover ‘Rent it finished’, I can’t display all menu items.
I tried to play with many css properties, but I can’t make it work…
Thank you…
The first sub-item being cropped is due to two
overflow: hidden;CSS instructions on#headerand#nav.Remove both instructions and you’ll see sub-menus.
As your list-items are floating,
#navno longer have flowing content and thus has an height of0: background has disappeared.You should put your background-images on each individual floating list-item whether than ul or a parent.
From an accessibility point of view, you should not add title attributes on your links except if necessary. Here the text of your links are explicit as is and your titles are strictly identical to text: your titles are unnecessary.