Re: [css-d] Hover/click and expand help needed

2005-10-19 Thread Christian Montoya
On 10/19/05, Mitko Gerensky-Greene [EMAIL PROTECTED] wrote: Thanks to all for trying to help! I got further requirements and I have a draft version based on some code Dreamweaver spat: http://websage.net/new/programs_menu.htm The CSS and JS code are respectively:

[css-d] Hover/click and expand help needed

2005-10-18 Thread Mitko Gerensky-Greene
I need help with the following: I need to have 4 boxes on my page and upon hovering AND clicking on each, I need to have a list of links (I suppose, residing in a div) show up below the corresponding box. Could anyone point me towards some code or tutorial explaining how to accomplish that?

RE: [css-d] Hover/click and expand help needed

2005-10-18 Thread Gavin Jackson
I need to have 4 boxes on my page and upon hovering AND clicking on each, I need to have a list of links (I suppose, residing in a div) show up below the corresponding box. Is there a way to click without first hovering? I'm just trying to understand why the 'AND' between the two? Gavin

Re: [css-d] Hover/click and expand help needed

2005-10-18 Thread Derek de Jong
Thierry Koblentz wrote: Hi Derek, You could try: #set_of_links a:active span {...} /* for MSIE */ #set_of_links a span { /* instead of display:none */ position:absolute; left:-9000px; } Regards, Thierry | www.TJKDesign.com It worked. Initially I had used :active, but Firefox only

Re: [css-d] Hover/click and expand help needed

2005-10-18 Thread Mitko Gerensky-Greene
That is great, how about adding the following functionality: The first time I click on one of the four boxes, I get the expanded hidden menu, the next time I click on the same box, its own expanded menu hides again. Hope this make sense. I do think that having the box clicked makes more sense