Hey, Thx for your help. I had figured out a solution in the meantime.
I also have used a div around the ul and this solves the problem but in my case I still had problems with the blinddown and blindup. If i used the rewritten effects (http://prototype.lighthouseapp.com/ projects/8887/tickets/7-effect-blindup-and-effect-blinddown-not- rendering-properly-on-ie7) it worked better but not totally. My solution (for the ones also dealing with this): 1. like misocharles indicated: <ul> <li> <a href="#" onclick="Effect.BlindDown('test1', { duration: 0.2 });return false;">Menu 1</a> <div id="test1" style="display:none"> <ul> <li>balbal</li> <li>fgdgdqgqd</li> <li>dgqhfgd</li> </ul> </div> </li> </ul> You got to put a div around in which you define the style and id. 2. I used 2 other effects to gain the same restult. Instead of blinddown --> slidedown + appear Instead of blindup --> slideup + fade Hope this is usefull to others Bram --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
