[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-03 Thread gerbert
Thanks Charlie, that's a great help. I am going to use that as a starting point. On Jun 2, 7:00 pm, Charlie charlie...@gmail.com wrote: not a perfect solution but you won't see any subs for any of the time cursor is over Home $(.sf-menu li:eq(0)).hover(   function () {    

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread waseem sabjee
Isn't this a Superdrop style menu ? ahh anyway in order to achieve that you would need to have a specific class for those that don't have drop downs. then for the hove event var theclass $(this).attr(class); if(theclass != nosub) { $(lower).show(); } else { $(lower).hide(); } On Tue, Jun 2,

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread gerbert
Thanks waseem, I'm not sure what superdrop is, but mine is a slightly modified version of the superfish nav-bar style located here: http://users.tpg.com.au/j_birch/plugins/superfish/#examples I will try to implement your code. The hard part is going to be putting it in the right place. These

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread waseem sabjee
Would you like me to show you how to create your very own jquery plug in ? usually when i get a request for a menu system at work. the design and animation on it would be custom and I would make my own plug in with parameters or extend one of my existing plugins :) On Tue, Jun 2, 2009 at 9:43

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread gerbert
I was thinking I should probably just start from scratch, but opted with superfish because I liked that it used hoverintent, that it degraded nicely, and that it is compatible with all the browsers. I didn't think I would be able to acomplish all that myself being a beginner. I would love some

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread waseem sabjee
yeah. browser computability does take a bit of time when you start from scratch usually either ie7 or ie6 is the problem for mefirefox, chrom and safari i'm good with. On Tue, Jun 2, 2009 at 10:09 PM, gerbert gerb...@gmail.com wrote: I was thinking I should probably just start from

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread gerbert
Joel Birch are you around? Anybody else feel like giving it a crack? Thanks. On Jun 2, 2:20 pm, waseem sabjee waseemsab...@gmail.com wrote: yeah. browser computability does take a bit of time when you start from scratch usually either ie7 or ie6 is the problem for mefirefox, chrom and

[jQuery] Re: Superfish Horizontal Nav-bar Question

2009-06-02 Thread Charlie
not a perfect solution but you won't see any subs for any of the time cursor is over "Home" $(".sf-menu li:eq(0)").hover( function () { $(".lower").css("left","-999em"); }, function () { $(".lower").css("left","0em"); } ); gerbert wrote: Joel Birch are you around? Anybody else