Re: [css-d] Reliable Dropdowns?

2006-03-13 Thread Frank Van Damme
On 3/9/06, Christian Heilmann [EMAIL PROTECTED] wrote: How do you nest a full menu in an inline element like span? Even more interesting, how do you nest a lot of other links inside a link? This solution helps for tooltips, not for menus... Bury an ul inside it. Or rather: replace the span

[css-d] Reliable Dropdowns?

2006-03-09 Thread Spike Spencer
Hi guys, We're looking for a reliable method of doing the following. Everything we have tried just doesn't work. First of all, our site is center-aligned. There are four circular images that, when in the :hover state, need to display a menu beneath them (Hey, I didn't write the design brief!)

Re: [css-d] Reliable Dropdowns?

2006-03-09 Thread francky
Spike Spencer wrote: Hi guys, We're looking for a reliable method of doing the following. Everything we have tried just doesn't work. First of all, our site is center-aligned. There are four circular images that, when in the :hover state, need to display a menu beneath them (Hey, I didn't write

Re: [css-d] Reliable Dropdowns?

2006-03-09 Thread Christian Heilmann
Hi Spike, It sounds like you can solve it with: a id=circle1 href=#stayhereimg src=circle1.gifspanmenu over here/span/a and: #circle1 a span { margin-left: -px; } #circle1 a:hover span { margin-left: 0 px; } to toggle the menu. But it will depend on real html / css in your