[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-08 Thread HariOm
Thanks Charlie for your quick reply. I got it working. The problem was with Master page in MVC may be. Before I was adding reference to superfish.js file before the ContentPlaceHolder for head in master page. like: script type=text/javascript src=%=Url.Content(~/Content/webui/

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-08 Thread Steve Hueners
Thankx for following this issue up...I'd find it helpful to review the other pages that lead you to this point. thx again. On Wed, Jul 8, 2009 at 12:48 AM, HariOmhariohm@gmail.com wrote: Thanks Charlie for your quick reply. I got it working. The problem was with Master page in MVC may

[jQuery] Re: Superfish nav bar drops down BEHIND Javascript slideshow in Internet Explorer

2009-07-08 Thread Charlie
did you try solution "IE Z-Index Bug Fix" in FAQ section of superfish site? http://users.tpg.com.au/j_birch/plugins/superfish/#faq Adam Bomb wrote: I need some help. I'm using Superfish navigation with Ultimate Fade-In Slideshow. The two scripts work in harmony in every modern browser

[jQuery] Re: Superfish : Slide doesn't work

2009-07-08 Thread Charlie
probably good idea to validate page, see if that helps. Page flickers on initial load in FF also, you have a few markup problems including divs inside a tags, extra "" in some places and some unclosed tags http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fwww.pms-clan.org%2F Fabinou

[jQuery] Re: superfish displaying oddly in my FF3.5 install

2009-07-08 Thread Charlie
looks OK in my FF 3.0.11 however in IE 7 looks different than your image. Renders with no padding ona's so li's get all bunched together Header has a div inside an h1 tag, perhaps that's causing problem? kanjigirl wrote: Yesterday my host did about 10 minutes of server maintenance and

[jQuery] Re: Superfish Navbar wrapping too soon

2009-07-08 Thread Ryan Ross
I figured it out (sorta) .sf-navbar li ul { /*width:44em; /*IE6 soils itself without this*/ width: 84em; } I changed the width in ems to a larger number just to see what it would do, turns out it provided enough space for the entire sub

[jQuery] Re: Superfish Navbar wrapping too soon

2009-07-08 Thread Ryan Ross
Thanks Charlie, I adjusted the .sf-navbar li ul width to 60em. Originally it was 84, and extended the page when hovering, causing the body background to move since it was centered, and the page was increasing in width. On Jul 8, 12:52 pm, Charlie charlie...@gmail.com wrote: Ryan, was looking

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-07 Thread JayD
Figured it out. Thought I'd post my own answer here. Seems I was using an older version of scriptaculous.js . Apparently... there is a conflict with an older version of Scriptaculous and jQuery (Scriptaculous was attempting to extend the native Array prototype incorrectly). For anyone who may

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-07 Thread Charlie
"is not defined function" error means calling a function that doesn't exist at time it is called. Make sure path to your js file is valid, that is where the function is defined. Also be sure jquery.js being loaded before plugin js . If problem persists post a link You can put your function

[jQuery] Re: Superfish - Align sub menus to top

2009-07-07 Thread Charlie
you can use onBeforeShow to insert function to calculate offset for css. Number of li's x height of li etc Use "(this)" to refer to ul about to open and apply css to it galilee99 wrote: Hi, I'm trying to setup a vertical menu where the submenus align to the top of the parent ul rather

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-07 Thread HariOm
Charlie, yes you are right. It doesn't recognize the function because it seems there is no respective superfish plugin loaded, but when I look at the HTML in firebug or developer tool in IE then I can see that it has already loaded. Even I manually put the calling of that script (

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-07 Thread Charlie
As for master vs content pages, have no idea what your MVC looks like or what your templates look like, or directory structure. Best resource for that would be a forum related to MVC. As previously suggested, "If problem persists, try posting a link". >From my vantage point you have too

[jQuery] Re: Superfish 1.4.8 w/ Supposition

2009-07-06 Thread Ryo INOUE
In the changelog.txt for Superfish it is said that in 1.4.2: attach everything to jQuery.fn.superfish to clean up jQuery namespace So I made the following changes in supposition.js v0.2 and it seems to work fine with Superfish 1.4.8 and Supersubs: line 57:

[jQuery] Re: Superfish 1.4.8 w/ Supposition

2009-07-06 Thread Joel Birch
I'm sorry, I just found this thread. Ryo has found the correct solution. I overlooked that Supposition hooked into $.superfish. Sorry for the inconvenience, folks! Joel Birch. On Jul 6, 8:14 pm, Ryo INOUE rin...@gmail.com wrote: In the changelog.txt for Superfish it is said that in 1.4.2:    

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-03 Thread JayD
Thanks again Charlie, Have done as you've said but still no luck. I've placed the script file referencing to the 'prototype library' above the below as you described. // Use Prototype with $(...), etc. $('someid').hide(); The relevant parts of the page head now look like this: !--

[jQuery] Re: SuperFish for Joomla - SlideUp Animation

2009-07-03 Thread Chris
hi charlie, first of all, many thanks for your reply on my questions. i tried out several settings with the animation param, but didn't get (as you said the is no option in-code) slideUp to work. so, if i understood you correctly - there would be a modification of hideSuperfishUI() necessary,

[jQuery] Re: SuperFish for Joomla - SlideUp Animation

2009-07-03 Thread Charlie
that's correct. The tricky part is that you are working in a Joomla module, and the parameters would not be displayed in module manager without modifying the admin portions of the extension as well Chris wrote: hi charlie, first of all, many thanks for your reply on my questions. i

[jQuery] Re: Superfish menu: IE 7 problem

2009-07-02 Thread Charlie
this is unusual situation where your design forces sub menu to appear in same position of top menu level the problem is definitely a z-index situation whereby in IE7 your main is higher than subs, that's why you can hover the first sub element but 2nd , 3rd etc the next main element is

[jQuery] Re: Superfish menu: IE 7 problem

2009-07-02 Thread shinokada
I added z-index in different ways, but I am not able to find solution. I checked the validation, but nothing related to the issue. Help please??

[jQuery] Re: Superfish menu: IE 7 problem

2009-07-02 Thread Charlie
i am not an expert at sorting out z-index but would try something like .sf-menu {z-index :10} .sf-menu li:hover ul,.sf-menu li.sfHover ul {z-index :100} As far as validation, smart thing in my mind is to make the page valid, not to pick and choose what you think might or might not help

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-02 Thread Charlie
was trying to look at the navbar and didn't see protoype script there one problem is you have 2 versions of jquery.js loading, one with each plugin. That can cause problems. Keep the top one, delete bottom one. See if that helps. If menu problem persists seeing a version with no other

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-02 Thread JayD
Thanks Charlie, Greatly appreciate your assistance with this. Unfortunately however still no joy... I'd prefer to continue using the Prototype version of Lightbox and I've now been informed by other team members that I must so am really keen to get Superfish and Lightbox2 working properly

[jQuery] Re: superfish and Lokesh Dhakar's lightbox2 seem to conflict - please help

2009-07-02 Thread Charlie
gone too far, only place the $ needs changing is in the script tag you use to call menu and create functions based on jquery.js or plugins. The plugins are safely contained in special function wrappers. For now just consider plugin files as read only, and library files are always read only

[jQuery] Re: SuperFish for Joomla - SlideUp Animation

2009-07-01 Thread Charlie
using the animation option you can get effects on the opening of sub menus example: jQuery('ul.sf-menu').superfish({animation:{height: "show"},speed : 1000});// produces 1 second slide down effect, use opacity for fades, margins for positions etc to reverse for the slideUp there is no

[jQuery] Re: superfish menu question

2009-06-30 Thread sso
I don't have a specific answer, but I find that usually happens when I change a margin/padding on hover and it doesn't match what it was before. On Jun 30, 10:16 am, Kody Thompson kodythomp...@gmail.com wrote: how can i make the text stop sliding to the right on hover?

[jQuery] Re: superfish menu question

2009-06-30 Thread Charlie
there shouldn't be any shift as result of iniital superfish.css unless you a) modified the css b) installed in place of another menu and having css conflicts Kody Thompson wrote: how can i make the text stop sliding to the right on hover?

[jQuery] Re: Superfish Question

2009-06-30 Thread posh beck
On Tue, Jun 30, 2009 at 10:06 PM, Kody Thompson kodythomp...@gmail.comwrote: How can I get rid of the slide effect on a basic horizontal menu? I love the way the basic example works but I can't mimic it without having the text all slide to right and re-sizing the box. I know this is a stupid

[jQuery] Re: Superfish Question

2009-06-30 Thread Charlie
if you can post a link to view problem, there's likely an easy resolution. All that came through on this post was a mountain of url's posh beck wrote: On Tue, Jun 30, 2009 at 10:06 PM, Kody Thompson kodythomp...@gmail.com wrote: How can I get rid of the slide effect on a basic

[jQuery] Re: Superfish and Supersubs behavior in IE6

2009-06-28 Thread Charlie
it could be a css bug non related to script, do you get same behavior when comment out supersubs.js ? Outlaw64 wrote: What a great plugin Superfish is! Awesome! My question is regarding the behavior of Supersubs in IE6. It seems to adjust to the correct width, but, it applies the new

[jQuery] Re: Superfish spacing between modules/Row height

2009-06-26 Thread johnnyg
Charlie - thanks so much for these few words: All height is resultant of padding on inner most tag which is a tags, line 119 of superfish.css That was so EASY!!! Really appreciate it. John

[jQuery] Re: Superfish spacing between modules/Row height

2009-06-26 Thread Charlie
don't thank me, thank the author for designing it to be so easy. glad it worked out for you johnnyg wrote: Charlie - thanks so much for these few words: "All height is resultant of padding on inner most tag which is a tags, line 119 of superfish.css" That was so EASY!!! Really

[jQuery] Re: Superfish conflicht with Header Image for Joomla 1.5

2009-06-25 Thread deboni
Thanks! that seems to be the right approach. However I have no idea how I should implement that into Joomla. Maybe it has been done before? On Jun 19, 9:52 pm, Theodore Ni zyl...@gmail.com wrote: I don't know the details behind your specific problem, but a solution may be found at the

[jQuery] Re: Superfish conflicht with Header Image for Joomla 1.5

2009-06-25 Thread deboni
Thanks! that seems to be the right approach. However I have no idea how I should implement that into Joomla. Maybe it has been done before? On Jun 19, 9:52 pm, Theodore Ni zyl...@gmail.com wrote: I don't know the details behind your specific problem, but a solution may be found at the

[jQuery] Re: Superfish conflicht with Header Image for Joomla 1.5

2009-06-25 Thread Charlie
the majority of the problems with superfish integration into Joomla are css issues. The existing template menu css doesn't get removed when you install superfish and some of the template css conflicts with superfish providing a link would help deboni wrote: Thanks! that seems to be the

[jQuery] Re: Superfish spacing between modules/Row height

2009-06-25 Thread Charlie
superfish doesn't apply any heights to elements in default install. All height is resultant of padding on inner most tag which is a tags, line 119 of superfish.css johnnyg wrote: I'm definitely not a coder, don't know very much about css, know nothing about _javascript_. So that said, I'm

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-24 Thread Roberto da Costa
Hi Charlie, You're right. I'm working on a wordpress theme. 'current-cat-parent' is a class created by WP. So here is a part of the code generated: superfish.js: sf.c = { bcClass : 'sf-breadcrumb', menuClass : 'sf-js-enabled', anchorClass :

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-24 Thread Charlie
this sort of thing happens all the time in Joomla, not so sure about how often in Wordpress in Joomla it's usually left over css from template menu that causes the problem there is likely some css( possibly script??) affecting some of the template classes that aren't part of superfish css or

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-23 Thread Charlie
'current-cat-parent' isn't a class used in original superfish . Is this a CMS installation(joomla or other?) You either have a modified version, or this class comes from your template. Sounds like you have other css and/or scripts affecting menu. No way to tell without link or code

[jQuery] Re: Superfish IE question

2009-06-19 Thread Charlie
rule of thumb is to have jquery.js load before any other jquery scripts, you have superfish.js loading before jquery.js kanjigirl wrote: I'm using Superfish for the first time on this page: http://www.redkitecreative.com/projects/rickett/ In IE7 I'm getting an error with

[jQuery] Re: Superfish Nav-bar Style solution for WordPress ?

2009-06-19 Thread Al
Hi John, I think Superfish works pretty well with Wordpress. http://users.tpg.com.au/j_birch/plugins/superfish/ cheers, Al On Jun 18, 10:15 am, John Myrstad john.ivar.myrs...@gmail.com wrote: Hi. Hopefully this request is not off topic. I`m to make a working css solution to use nav-bar

[jQuery] Re: Superfish conflicht with Header Image for Joomla 1.5

2009-06-19 Thread Theodore Ni
I don't know the details behind your specific problem, but a solution may be found at the following link: http://docs.jquery.com/Using_jQuery_with_Other_Libraries Teddy On Fri, Jun 19, 2009 at 2:42 PM, deboni des...@debonis.ch wrote: Hi I'm using your superfish menu on a joomla website.

[jQuery] Re: Superfish pathClass

2009-06-17 Thread Joel Birch
On Jun 14, 6:08 pm, Touran oliverdav...@gmail.com wrote: I really need a way to change the pathclass based on selecting a item in the menu without going back to the server.  Any ideas. Thanks Hello, You could create a function which removes the 'current' class from all li elements in the

[jQuery] Re: - Superfish menu screws up my menu..

2009-06-16 Thread Charlie
this is a css issue very common with Joomla integration of new menu, the original template menu css does not get removed when installing a new menu and some of this css is needed to adapt new menu to theme of template. There are different techniques that can be used to style a menu , yet

[jQuery] Re: Superfish help - rebuilding a page because of LiveBooks framework

2009-06-15 Thread marioATsmithphoto.com
Many Many thanks to Charlie for not only helping me to make this work, but for making it work as efficiently as possible with coding that is streamlined and not full of useless and unnecessary code. He implemented a very clean Superfish script in a VERY short time and his services are offered at

[jQuery] Re: Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-06-15 Thread Buch
I have the exact opposite problem my IE is showing while all other browsers show. On May 25, 3:13 am, Susan esnelsonfam...@gmail.com wrote: I just discovered that Internet Explorer is not showing the 3rd level of the menu. http://tinyurl.com/cr2wmr(very much a work in progress) I believe

[jQuery] Re: Superfish menu issue - flyouts expand beyond window boundaries

2009-06-12 Thread Charlie
simplest solution is to add an extra class to the culprit sub ul's either by hard coding it in markup or using jquery . From there it depends on the situation you have, number of sub levels and which levels are being troublesome. If it's just a matter of sliding first level left a bit, use

[jQuery] Re: Superfish: 3rd submenu

2009-06-10 Thread Rafael Vargas
Hello Jeremy, I don't know the limit, but the levels are created on the menu item manager. I just created a chain of menu and submenu items just by assigning the parent item. This is done in Joomla : - Under Menu, select your menu. Top menu for example. The menu item manager opens. - There

[jQuery] Re: Superfish: 3rd submenu

2009-06-10 Thread Charlie
this response refers to a specific use in a CMS, in this case Joomla. Admin of a menu in a CMS has nothing to do with extensibility of the markup or script functionality. you can extend the markup virtually indefinitely without any css or script mods by continuous nesting of UL's. Of course

[jQuery] Re: Superfish IE6 and IE7 failures

2009-06-08 Thread Chris J. Lee [ MSU #14 ]
Jeremy: the menu does work pretty well in ie6. It's a bit of a tangle to skin and develop a drop down menu. I've found that building the menu alone would isolate your problems. There are sometimes styles that you've applied to the menu previously that effect the functionality of the menu. So

[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 menu - I want my current active tab and corresponding sub nav to display on certain pages -- a newbie begging for help.

2009-06-02 Thread Laker Netman
On Jun 2, 8:41 am, Juliane jmor...@cmpl.org wrote: I'm a novice and relied on freelancer to build my superfish menu. Everything is working correctly here --http://www.cmpl.org/but I want to take it to the next level.  When a user clicks on a major sub tab (such as About Us) I want the

[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

[jQuery] Re: Superfish - Hide Submenu For Home Button

2009-06-01 Thread gerbert
Sorry, I should mention this behavior only applies to the horizontal nav-bar version of the plugin. On Jun 1, 10:34 pm, gerbert gerb...@gmail.com wrote: Can someone possibly help me here? I need to hide the superfish submenu when a user hovers over my home button, since there are no sub

[jQuery] Re: Superfish

2009-05-30 Thread shawna
Hi Ethan I checked and removed the previous div and the following div did indeed have position:relative as well as z index applied..I have since removed this and I still have the same problem..I just want the navigation to force fit into this div containing the superfish menu..I have defined it

[jQuery] Re: Superfish

2009-05-28 Thread D.A.
I've also got a similar issue, using two horizontal Div's each containing nav rows. I will eventually need three rows, but in ff it's working great, IE is not so great. dropdown's from the upper row are behind the lower row. example www.roget.com/dev/superfish.php On May 16, 10:42 am, Ethan

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-27 Thread Hetneo
Further to that last post. I have placed the contents of the Parent menu item into a div. However, superfish is adding the list items within the div. One way of solving my issue could be getting superfish to ignore certain ul buried in parent items, but how do I do this? This is the

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-27 Thread Charlie
superfish doesn't add items, it only animates them *if* they exist did you look at the working example i shared with you? Using superfish it shows several methods to do what you need without using ul's in the div if you are stuck on using ul's inside the div then you would need to do some

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-27 Thread Hetneo
Hehe.. I was afraid you were going to say that. jQuery is my strongest point (as you have probably already guessed) and I am running out of time. BUT I will definitely donate to your wonderful project if you could help me with this custom scripting (hehe.. desperation + desire to use superfish

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-26 Thread Ischa Gast
That's great news. Would be interested to see the final product. Are there any hints you can give me or point me to a file I can be focusing my attention to achive this? It's a custom made script where you can choose what child you want to target, something superfish doesn't have but would

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-26 Thread Mohd.Tareq
Hi Hetneo, Its easy to get that kind of menu using javascript / jquery code. See they have written plugin based on ul li. Now here is a solution like Ischa I guess ;) Step : 1 - Create Main menu div menu1,menu2,menu3,etc 2 - Create another menu below each menu div [menu1 - sub-menu1] 3 - Use

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-26 Thread Hetneo
Hi Mohammad, You're exactly right. That's is the functionality of the superfish extension for Joomla. I found this tutorial very helpful: http://www.sitepoint.com/blogs/2009/03/31/make-a-mega-drop-down-menu-with-jquery/ In this case however, superfish (

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-26 Thread Mohd.Tareq
Hi, Hmm...I had worked with CMS 'Silverstripe' in that we do get varaibles 'current' for current page 'link' for other pages. We do get all pages name from parent table.So I do retrive menu names based on pages from particular field names.Displaying with if exp 'Current' then 'Link'. In

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-26 Thread Charlie
simple recipe for multi column subs with superfish put div into 2nd level li. Put whatever you want inside this div, images, multiple divs, heading tags etc. Style divs any way you need use supersubs.js to adjust widths if not all sub menu's are same width Hetneo wrote: Hi

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-26 Thread Hetneo
Hi Charlie, I guess the next question is what happens if there are li items within the div? Superfish does not display the grand child menu items when hovering over the parent. I.E. ul id=menu li id=5 class=item5 a href=/index.php?option=...spanParent1/span/a

[jQuery] Re: Superfish and IE6 Z-Index

2009-05-25 Thread sutra
Hi, I think I found the problem, the fly-out menu was working before and recently I upgraded to jquery 1.3.2, it stopped working in IE6. Downgraded to v1.2.6 again, the fly-out works. On Apr 30, 5:58 am, gfranklin gfrank...@gmail.com wrote: check the order in which your external javascripts

[jQuery] Re: Superfish: Mega Menu Ability

2009-05-25 Thread Hetneo
Hi Charlie, Thanks for the response. I just need a little more guidence. Where do I put the div? Which file where? Thanks for the help mate, Charles On May 20, 9:05 pm, Charlie charlie...@gmail.com wrote: put a div inside sub li, put whatever you want in the div. If various dropdowns have

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-25 Thread Hetneo
Hi Ischa, Any luck in implementing a solution? I, too, am after a mega menu style, like www.ea.com Any suggestions on how to go about this? Thanks for your help, Charles On May 14, 4:53 pm, Ischa Gast cont...@ischagast.nl wrote: Have you taken a look

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-25 Thread Ischa Gast
For now, not using Superfish I think. I used a script from a colleague of mine, but that script is not public available right now. Maybe in the future Sorry that I can't help you. Gr Ischa On Mon, May 25, 2009 at 11:33 AM, Hetneo charles.kingsley.no...@gmail.com wrote: Hi Ischa, Any

[jQuery] Re: Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-05-25 Thread Charlie
you have a series of compounding problems here. Simplest to fix is getting rid of "left: -50%" hack by clearing out all the non essential css from the container div "navigation". Getting rid of "inline" in that div will also fix the hack for "weird CMSMS menu template problem". Next make

[jQuery] Re: Superfish: Mega Menu Ability

2009-05-25 Thread Hetneo
Hi Charlie, I'll try and explain myself a little better. Basically, when a user scrolls over a menu item, the drop down displays both the child ul and any sub child ul if existant? Does that make sense? Hehe.. thank you for your time, Charles On May 25, 5:26 pm, Hetneo

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-25 Thread Hetneo
Hi Ischa, Thanks for the fast reply mate. That's great news. Would be interested to see the final product. Are there any hints you can give me or point me to a file I can be focusing my attention to achive this? Thanks, Charles On May 25, 7:56 pm, Ischa Gast cont...@ischagast.nl wrote: For

[jQuery] Re: Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-05-25 Thread Susan
Charlie, thank you for putting me on the right track. I went back to the superfish.css and was able to get the 3rd level links to show. So, now I just need to restyle everything to make it look like it did before. On May 25, 8:14 am, Charlie charlie...@gmail.com wrote: you have a series of

[jQuery] Re: Superfish: Mega Menu Ability

2009-05-20 Thread Charlie
put a div inside sub li, put whatever you want in the div. If various dropdowns have different widths add supersubs.js and adjust accordingly Hetneo wrote: Hi Cy Morris, Firstly, great extension, love it!! Just wondering if it has the ability to be easily adapted into a mega menu style?

[jQuery] Re: superfish mouseover behaviour on page load

2009-05-20 Thread pauln
On May 20, 12:19 pm, Charlie charlie...@gmail.com wrote: have you tried using pathToclass? built in function insuperfishallows opening path you choose by adding class of your choice. Hey, many thanks, I missed that - a very neat feature, works great. However, the selected submenu doesn't

[jQuery] Re: superfish mouseover behaviour on page load

2009-05-20 Thread Charlie
have you tried using pathToclass? built in function in superfish allows opening path you choose by adding class of your choice. Examples on superfish home page pauln wrote: I'll restate this previously posted issue with a little more context... I'm using superfish with hoverIntent to

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-20 Thread Ethan Mateja
Outstanding! Thanks for the time and support. Worked like a charm :D On Tue, May 19, 2009 at 9:24 PM, Charlie charlie...@gmail.com wrote: I read that wrong, what I proposed shifts the 1st level subs to the left, to get second level subs to show on left side instead of right, assign some

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-19 Thread Ethan Mateja
I was able to acheive multiple columns by giving the ul a width that is n times bigger than the li, where n is the number of columns desired. -THANX Cy Morris! I now face an issue where items close to the right hand side of the screen bleed off with multiple columns. I wonder how I can force the

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-19 Thread Charlie
assign a class to UL you want to shift example "left_offset" ($'ul.sf-menu').superfish({ onBeforeShow: function(){ if ($(this).hasClass("left_offset")) { $(this).css("left", "-30px"); } } }); Ethan Mateja wrote: I was able to acheive multiple columns by

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-19 Thread Charlie
I read that wrong, what I proposed shifts the 1st level subs to the left, to get second level subs to show on left side instead of right, assign some class like "show_left" to second tier of subs if ($(this ).hasClass("show_left")) { $(this).css("left", "-10em");// if using supersubs,

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-18 Thread okdok
Can anyone provide me an example of how I can modify supersubs.js to create a multi-column dropdown? Thanks! On May 16, 12:46 pm, Ethan Mateja ethan.mat...@gmail.com wrote: Thanks for the prompt reply! I took a peek at supersubs.js and my question is this: Is it just a matter of adding an

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-16 Thread Charlie
you can put columns into the sub menus fairly easily with supersubs.js okdok wrote: I would like to integrate a multi-column superfish into a Joomla! 1.5.10 production site. Has anyone been able to accomplish something similar?

[jQuery] Re: Superfish - Multi-Column Dropdown

2009-05-16 Thread Ethan Mateja
Thanks for the prompt reply! I took a peek at supersubs.js and my question is this: Is it just a matter of adding an extra div tag between ul's and styling in a manner similar to the link below? http://www.gunlaug.no/tos/moa_41.html I have been working with suckerfish menu's for a year or so

[jQuery] Re: Superfish

2009-05-16 Thread Ethan Mateja
Check your original page CSS carefully. I have assisted clients with the same problem and found that improper use of the position:relative tag on containing and following div tags can cause this to render incorrectly. On Fri, May 15, 2009 at 3:45 PM, Donald Morgan donmorga...@gmail.comwrote:

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-14 Thread Ischa Gast
Have you taken a look at http://users.tpg.com.au/j_birch/plugins/superfish/#getting-started Yes I looked at it but I can't find an example with a div that has to show. or tried only using lists with more complex CSS rather than div's? I need to use that div element because of the complex

[jQuery] Re: superfish bg images - almost there!

2009-05-13 Thread gfranklin
You need to add the style for the li.sfHover to match a:hover. .sf-menu ul a:hover { color: #fff !important; background: #005daa !important; } SHOULD BE LIKE THIS: .sf-menu ul a:hover, .sf-menu li.sfHover a { color: #fff !important; background: #005daa

[jQuery] Re: Superfish 1.4.8 w/ Supposition

2009-05-13 Thread Clint T
I'd also like to add a vote for a Supposition update. I'm currently using 1.4.8 with hoverIntent, bgiframe, and supersubs and would really really really like to use the Supposition plugin as well. I'll keep my fingers crossed that Joel or Jesse is still monitoring the forum and can make this

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-13 Thread andy
Have you taken a look at http://users.tpg.com.au/j_birch/plugins/superfish/#getting-started or tried only using lists with more complex CSS rather than div's?

[jQuery] Re: Superfish IE 6 - no menu appears

2009-05-12 Thread gfranklin
turn on script debugging in internet prefs for IE. This helped me to determine my issue. I basically had the order of js references incorrect in my HTML head. g On Apr 23, 4:35 pm, Laker Netman laker.net...@gmail.com wrote: On Apr 20, 10:52 am,gfranklingfrank...@gmail.com wrote: I am

[jQuery] Re: Superfish menus in nav-bar style require subnavs to behave correctly?

2009-05-12 Thread Hiousi
my solution was to add childs even if not there by calling doing this just before invoquing Superfish: $('ul.sf-menu li:not(:has(\'ul\'))').each(function() {$(this).append ('ul/ul');});

[jQuery] Re: superfish bg images - almost there!

2009-05-12 Thread PapaBear
On Mar 25, 6:32 am, durill gdeane...@gmail.com wrote: most every part is working for me, including using background images. when the mouse hovers, the background image changes as does the text color. perfect. currently, i only have thesuperfishmenu on the Discounts link so that is the link

[jQuery] Re: Superfish 1.4.8 w/ Supposition

2009-05-12 Thread Steve W
Just wanted to throw my hat in the ring about this issue, Supposition is an awesome enhancement to Superfish and it would be great to be able to use it in the latest version. I've reverted back to 1.4.1 for now after trying unsuccessfully for about an hour to figure out where the disconnect is in

[jQuery] Re: “Superfish” Vertical

2009-05-10 Thread Englesos
many thanks - will do :-) On May 9, 6:44 pm, Englesos engle...@gmail.com wrote: Hi All, I have been trying to talk “Superfish” into working as a vertical menu for phpWebsite (as discussed here) but whatever I do it insists on staying horizontal. I looked at the example

[jQuery] Re: “Superfish” Vertical

2009-05-09 Thread Charlie
add the superfish-vertical.css file to page along with the superfish.css, and in tag ul class="sf-menu"  put class="sf-menu sf-vertical". Done, menu now vertical Englesos wrote: Hi All, I have been trying to talk “Superfish” into working as a vertical menu for phpWebsite (as discussed

[jQuery] Re: Superfish - only hide one level - how to?

2009-05-09 Thread Charlie
Simplest solution would be don't use the third level UL's, add custom classes to the 3a and 3b you are showing and use css to customize. Won't be fighting script or having to change absolutely positioned subs that way webhank wrote: i am looking for a way to have superfish only hide the

<    1   2   3   4   5   6   7   8   9   10   >