[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-21 Thread Florent V.
not sure what you mean by hack or abusing the ul/li elements HTML 4.01 defines a set of elements, each with its own semantics. Some are meant as generic wrappers or containers in order to support language or style information (that's the DIV and SPAN elements). Others have a more precise

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-21 Thread Charlie
When it comes to issues like you are presenting I defer to higher powers Example: YUI framework, even in latest 3.0 release. Menu is built with UL/LI with containing DIV structures: http://developer.yahoo.com/yui/3/examples/node-menunav/node-menunav-3_source.html here's a live example on

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-20 Thread Florent V.
there is no reason not to be able to build a mega menu inside UL/LI structure and this has been done in superfish Sorry, but i think this is a mistake. This is the kind of code that Superfish expects: ul id=menu li a href=#Category name/a

[jQuery] Re: superfish navbar - how do I center the whole bar?

2009-10-20 Thread rupak mandal
Put the ul inside a div. I think it will work On Tue, Oct 20, 2009 at 9:05 AM, Shawn shallway...@gmail.com wrote: I'm using a navbar with superfish. I simply put my menu list inside a wrapper so the markup looks like this: div class=navbar-wrapper ul class=sf-menu sf-navbar div

[jQuery] Re: superfish navbar - how do I center the whole bar?

2009-10-20 Thread Florent V.
Hello, This is a CSS issue, not really related to Superfish or jQuery. The solution depends on your code, and also on the browsers you want to support (IE 6 and 7 will limit what you can do). If your UL has a fixed width, you can center it horizontally in its container using automatic margins.

[jQuery] Re: superfish navbar - how do I center the whole bar?

2009-10-20 Thread Shawn
If you have markup as indicated below, then you have invalid markup, which will cause problems. A UL element can't contain a div - it has to contain li's, which in turn can contain a div. I would expect that structure to fail. Removing the div immediately after the UL, will clean things

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-20 Thread Charlie
not sure what you mean by "hack" or "abusing the ul/li elements" only interpretation can think of for "abusing" is invalidation, here's an example of large container div inside a sub in superfish. http://tinyurl.com/yzfwmvy here's the 100% validation thru w3c validator

[jQuery] Re: Superfish plugin: some limitations that could be addressed

2009-10-19 Thread Charlie
I don't know a lot about screen reader issues, however there is no reason not to be able to build a mega menu inside UL/LI structure and this has been done in superfish. You can put divs inside an li, with columns , images, H tags, whatever you want and is all valid. Do whatever css you want

[jQuery] Re: superfish set hover on onload...

2009-10-17 Thread Charlie
I believe you need to adjust your template. "active" class is being applied to the a Home tag, but your "active-trail" class is needed on the parent li instead can do this failry easily also in jQuery adding following: $(".menu a.active").parent().addClass("active-trail")/// tested this in

[jQuery] Re: superfish xml again

2009-10-16 Thread Charlie
superfish is jQuery( _javascript_) and CSS that performs on html markup. Any xml related to it would be part of Joomla and have nothing to do with superfish script or the superfish css. Suggest researching this on joomla forums as it's totally non related to anything jQuery or to do with

[jQuery] Re: Superfish:'null is Null or not an object

2009-10-15 Thread Simael
Hi, If this tab will be clicked I receive the JS error, that 'null' is Null or not an object. I got it. I replaced $(document).ready(function() { $('ul.sf-menu').superfish( { animation: {height:'show'}, delay: 1200 } ); } ); with jQuery(function(){ jQuery('ul.sf-menu').superfish({

[jQuery] Re: Superfish - Drop Down not displaying

2009-10-15 Thread rupak mandal
Increase the hight of #pillmenu to 87px or as per your requirement. In template.css Thanks Rupak On Thu, Oct 15, 2009 at 5:47 PM, Superfish Query somirasoo...@gmail.comwrote: Hello, I am using the Superfish Module and have been able to successfully install and use it. The problem I am

[jQuery] Re: Superfish - Drop Down not displaying

2009-10-15 Thread Charlie
take out overflow: hidden from #pillmenu line 122 of template.css this causes anything that expands within the menu to be hidden rupak mandal wrote: Increase the hight of "#pillmenu" to 87px or as per your requirement. In "template.css " Thanks Rupak On Thu, Oct 15,

[jQuery] Re: superfish

2009-10-15 Thread robocoder
My understanding is that error occurs if ga,js didn't load. On Oct 1, 4:42 am, glimbeek gvanlimb...@gmail.com wrote: Thanks for the reply. I do have other code on my page but if I remove it all nothing changes, if I remove the tracking code the error disappears... I'll google some more :/

[jQuery] Re: superfish

2009-10-15 Thread robocoder
helper.php isn't part of the superfish distro. You should take this up with the joomla mod developer. On Sep 30, 10:09 am, sanni46 susanne.goed...@ozlo.de wrote: Hallo, I would like to have two verticalsuperfish-menu-modules in one template on the left hand side.. I tried it, the first menu

[jQuery] Re: [superfish] How to focus on clicked menu item after menu item is clicked with jQuery ?

2009-10-15 Thread robocoder
Do you mean something like the (customized) superfish menu on http://piwik.org/demo/ ? On Sep 29, 3:34 am, Tharindu Madushanka tharindu...@gmail.com wrote: Hi, I am new to jQuery and usingsuperfishpopup menu widget to create a menubar. I have only four menus and 3 of them are not drop

[jQuery] Re: Superfish, Main Menu Submenus

2009-10-15 Thread Charlie
menus only manipulate what joomla sends to the page...best sorted out on a joomla forum hbsnam wrote: Hi all Would like to know how to make the main menu button unlinked, i.e. not linking to any article etc in Joomla, instead visitors have to navigate to the submenu and select a section

[jQuery] Re: Superfish navbar alignment question

2009-10-09 Thread VijayW
In addition, I would like to have another option to have the sub menu bar (navbar) centrally aligned under the main navbar. something like: : subalign: [left (default) | center | right ] : On Oct 1, 8:03 am, Charlie charlie...@gmail.com wrote: you could do that with out usingnavbaroption, set

[jQuery] Re: Superfish - How do I make superfish respond to onclick instead of hover?

2009-10-08 Thread Charlie
click function for open/close is not supported. If you do a search in this group you will find some patch code that isn't complete but others claimed worked in their application Spencer wrote: I am using superfish and I am wondering how I can go about changing the hover event to click so

[jQuery] Re: Superfish Causing Horizontal Scroll, all browsers. Help!

2009-10-08 Thread Charlie
can you post a link? sso wrote: I'm using superfish menu. I haven't modified the style sheets at all. My document passes wc3 validation with no errors or warnings. This is the structure of my html . style type="text/css" body { text-align:center; background-color:Black; }

[jQuery] Re: Superfish resize issue

2009-10-06 Thread Patrick
Gernot, It's probably not what you want to hear, but I would suggest trimming the main menu down by creating some groupings. I think you will find the usability and appearance improves, moreover, your issue will be resolved. Best of luck, Patrick On Oct 6, 9:06 am, Hetsch gernot.c...@gmail.com

[jQuery] Re: Superfish customization: change display height of submenu

2009-10-02 Thread Jacco
That's great, thanks! I'm slowly starting to understand these hooks and callback etc. I have played around with it for a while, and finally changed the onBeforeShow in sf.defaults. I couldn't get it to work with just using your example, tried different locations of putting that code. This works

[jQuery] Re: superfish

2009-10-01 Thread glimbeek
I don't know for sure but I couldn't see why not... Search this group or start your own topic. On 30 sep, 16:09, sanni46 susanne.goed...@ozlo.de wrote: Hallo, I would like to have two vertical superfish-menu-modules in one template on the left hand side.. I tried it, the first menu with

[jQuery] Re: superfish

2009-10-01 Thread glimbeek
Thanks for the reply. I do have other code on my page but if I remove it all nothing changes, if I remove the tracking code the error disappears... I'll google some more :/ On 29 sep, 19:09, Nalum mallon.l...@gmail.com wrote: Goolge tracking code is the cause of that error, I've come across

[jQuery] Re: Superfish customization: change display height of submenu

2009-10-01 Thread Charlie
good plugins offer options to hook into events and superfish is one of those the submenus are all absolutely positioned to their parent . In superfish css look for the li:hover ul, sfHover ul etc that reposition the sub to top=0 when visible. When not visible it has top=-999em In Superfish

[jQuery] Re: Superfish issues in ie6 and 7

2009-10-01 Thread Charlie
i've found if the li doesn't have a background it does what you are describing in IE, try adding background even if it has to be a transparent gif (gif vs png to avoid IE6 png issues) i'm sure others may have solutions but has worked for me in past neonwiredpixels wrote: In ie6 and 7

[jQuery] Re: Superfish navbar alignment question

2009-09-30 Thread Charlie
you could do that with out using navbar option, set sub li's inline and remove sub ul width, not tested but should be fairly straightforward Vali wrote: Hello, Actually I will repeat a message sent by some other user, message which seems to have been completely ignored. I believe this is

[jQuery] Re: [superfish] How to focus on clicked menu item after menu item is clicked with jQuery ?

2009-09-30 Thread Charlie
not sure exactly what you are trying to do but using jQuery addClass() you can create a different css class for anything you click on Tharindu Madushanka wrote: Hi, I am new to jQuery and using superfish popup menu widget to create a menubar. I have only four menus and 3 of them are not

[jQuery] Re: superfish

2009-09-29 Thread glimbeek
I may not have to do with the Superfish module, did some testing and it looks like the Google tracking code is causing the errors... not a 100% sure though. On 29 sep, 10:28, glimbeek gvanlimb...@gmail.com wrote: If I refresh my page in IE6 or IE7 I get a javascript error: Error: '_gat' is

[jQuery] Re: superfish

2009-09-29 Thread Nalum
Goolge tracking code is the cause of that error, I've come across this before and have contacted google about it and they said it was something to do with a script on my page but the only script on my page was the google tacking code. On Sep 29, 12:52 pm, glimbeek gvanlimb...@gmail.com wrote: I

[jQuery] Re: Superfish menu height

2009-09-26 Thread Charlie
the sub menu UL's are absolute positioned based on height of parent for horizontal menu or width for vertical. When not in view they are offset off page with top:-999em default visible position is top:2.5em which is set for *.sf-menu a* having padding top and bottom of .75em padding top +

[jQuery] Re: Superfish menu problem.

2009-09-16 Thread rupak mandal
Drop-down menu is working, but it will no display due to overflow:hidden in clear. You have to make some changes. Add height width in tail-top-menu and remove clear class from that div. .tail-top-menu { height:30px; width:100% } and also add height in .sf-menu a sf-menu li class

[jQuery] Re: Superfish and IE8 - drop-down menus flashing down on page load

2009-09-16 Thread Ralph Whitbeck
It seems like the submenu UL is being hidden on load via the javascript. Can you set the CSS to display:none and that should make it load without showing the submenu. Ralph On Wed, Sep 16, 2009 at 2:37 PM, graykiwi rjcatk...@gmail.com wrote: I have successfully installed superfish-powered

[jQuery] Re: Superfish menu problem.

2009-09-16 Thread sholland
Thank you! Thank you! I think I have almost conquered it, but a couple things left I can't seem to overcome. 1. In IE7 the dropdown menu is going behind the image. 2. I would like to turn off the background around the home button. I have searched and searched for this and cannot seem to

[jQuery] Re: Superfish menu problem.

2009-09-16 Thread rupak mandal
1) Remove position:relative from .main class constant.css (not tested). 2)To remove the back ground, remove back ground from sf-menu #current and sf-menu .active in superfish.css 3)Remove background from menu li class template.css. Thanks Rupak On Thu, Sep 17, 2009 at 10:24 AM, sholland

[jQuery] Re: Superfish menu problem.

2009-09-15 Thread sholland
Here aree the CSS styles being applied to that menu position by the template and by the superfish css. Thanks Suzanna ***TEMPLATE CSS* .tail-top-menu{ background:#f0f0f1

[jQuery] Re: Superfish: Leave sub ul menu visible when a tag class is set as active

2009-09-14 Thread gafir777
No idea? Well, is there a way to disable superfish for one li item? I can probably find if there's an active a tag somewhere, but I'd need to disable superfish for that item, and make the nested ul visible by default. On Sep 13, 2:36 pm, LoicDuros loic.du...@gmail.com wrote: Hello, I'm using

[jQuery] Re: Superfish menu problem.

2009-09-10 Thread Reynier Pérez Mira
sholland wrote: I have installed the superfish menu on a site I am developing and I am having trouble getting the horizontal setting to work. Here is the link. itc.contendia.net. It is the top menu and as you can see it appears to be cut off and the drop down on programs does not work.

[jQuery] Re: Superfish

2009-09-10 Thread TheoSoft
modify the .sf-menu styles from the superfish.css file On Sep 10, 1:59 pm, Matt stein...@gmail.com wrote: How do I go about changing the subnavigation background/position? I would like to add a vertical gradient to the subnavigation and am having a hard time. Any help would be appreciated.

[jQuery] Re: Superfish- Updated Version - Broke Menu :(

2009-09-09 Thread Charlie
critical part of jQuery is using a selector that matches the target element . You've used $('.ul.sf-menu').superfish() , which is looking for the ul with class named "sf-menu" which doesn't exist. http://docs.jquery.com/Selectors If you want to use the superfish css system you need the

[jQuery] Re: Superfish - adding a start menu button

2009-09-09 Thread Mr Speaker
Just use put a mouseover event on the trigger which shows the menu, and a mouseout event on the menu itself... like a href=# id=startButtonStart/a ul id=startMenu liAll Programs/li liRecent Documents/li liUpgrade to a Mac/li /ul $('#startButton').mouseover(function(){

[jQuery] Re: Superfish delay issues

2009-09-08 Thread John
update... Delay works except for when my cms assigns the selected class to the li. Is there a way to tell superfish to apply the same delay for selected li's? On Sep 8, 11:48 am, John vernworldw...@gmail.com wrote: Quick troubleshooting question: For the nav at mobilityidaho.org The delay is

[jQuery] Re: Superfish I need some help please

2009-09-07 Thread terabyte
Hello, you need to change a tag of sf-menu class: form: .sf-menu a { display:block; position: relative; } to: .sf-menu a { display:block; text-align: right; position:

[jQuery] Re: SuperFish Menu CSS

2009-09-06 Thread gBurgur
Thanks Charlie. That did the trick. Is there documentation anywhere that lists what all the CSS in the Superfish.css do? On Sep 5, 8:20 pm, Charlie charlie...@gmail.com wrote: $ is shorthand for jQuery. Script is fine. The width you need to adjust is .sf-menu ul. If you have multiple

[jQuery] Re: Superfish I need some help please

2009-09-06 Thread Charlie
script will work either way without modification. CSS change left float to right. If need dropdowns to switch sides, change li.sfHover ul from left:0 to right:0 Gunash wrote: Hello I need to make this menu RTL can you please assist me wich files must be changed ? Best regard Bahman

[jQuery] Re: Superfish I need some help please

2009-09-06 Thread Bahman Zendesher
Thanks a milon and how kan change teh direction forr all menu to RTl and the text align? wich codes must be changed ? Best regards Bahman Zendesher On Mon, Sep 7, 2009 at 12:28 AM, Charlie charlie...@gmail.com wrote: script will work either way without modification. CSS change left float to

[jQuery] Re: SuperFish Menu CSS

2009-09-05 Thread Lexmarketing
You need //link to the CSS files for this menu type link rel=stylesheet type=text/css media=screen href=superfish.css / // link to the JavaScript files (hoverIntent is optional) script type=text/javascript src=hoverIntent.js/script script type=text/javascript src=superfish.js/script //

[jQuery] Re: SuperFish Menu CSS

2009-09-05 Thread gBurgur
Thanks. The menu is actually up and running it is just any changes I have tried to make to it (sizes, colors, etc) have been useless. I do have the ul class=sf-menu in the code though. I wish I could let you go to site but it is not up and running on the web yet. (It is on my laptop.) I

[jQuery] Re: SuperFish Menu CSS

2009-09-05 Thread gBurgur
Would it make a difference that I have: jQuery('ul.sf-menu').superfish(); instead of: $(ul.sf-menu).superfish(); On Sep 5, 3:01 pm, Lexmarketing gmt...@gmail.com wrote: You need //link to the CSS files for this menu type link rel=stylesheet type=text/css media=screen href=superfish.css /

[jQuery] Re: SuperFish Menu CSS

2009-09-05 Thread Charlie
"$" is shorthand for "jQuery". Script is fine. The width you need to adjust is .sf-menu ul. If you have multiple widths required try the supersubs.js plugin. gBurgur wrote: Would it make a difference that I have: jQuery('ul.sf-menu').superfish(); instead of:

[jQuery] Re: Superfish Menu

2009-09-04 Thread Charlie
don't know what animation you want here's an example: animation:{width:'show', height:'show'}, speed:800 speed option controls animation PasKa wrote: Hello, I'm trying to use de Superfish menu in a site i'm developing. I would like to change the jquery animation but i really don't

[jQuery] Re: [Superfish] Background fade of menus

2009-09-02 Thread Charlie
appears you used CSS for another menu system.( Author: Craig Erskine Description: Dynamic Menu System) Rules for hovers aren't working with script. If you want to use the script use the CSS also. There are classes like sfHover that get added on show that you aren't accounting for in the other

[jQuery] Re: Superfish menu help!

2009-08-25 Thread Steven Yang
hi sorry, please correct me if i am wrong or if i over looked at something i didnt see anything superfish includes or event jquery includes but instead i see mootools is the link a demo to your problem?

[jQuery] Re: Superfish menu help!

2009-08-25 Thread Charlie
took a quick look but there is no superfish related script ( the plugin file or call to initiate )or css file in head of page so you've either disabled in Joomla, or not installed it properly as joomla extension can't offer much help for either of above Dinney wrote: Hi, I am trying to

[jQuery] Re: Superfish v1.4.8 clashes with SWF?

2009-08-24 Thread Charlie
try setting your wmode on flash to param name="wmode" value="transparent" / jim wrote: Trying to use superfish / jquery navigation on a site. Works great on my Mac (Safari Firefox), but in IE (not sure of the version) the drop-downs go behind the SWFs that sit just below the nav.

[jQuery] Re: Superfish IE problem

2009-08-19 Thread Charlie
would have to see how you initiate menu, I'm guessing it has to do with your animation method SemiYoni wrote: Hi, IE6 and IE7 throw an Invalid argument error when the mouse is over a menu item, the error is here within jquery fx.elem.style[ fx.prop ] = fx.now + fx.unit; It looks like

[jQuery] Re: Superfish - How do you delete the text that appears in the menu

2009-08-18 Thread Charlie
you could leave text there and use an offscreen text indent in css. Would actually be better for accesibility and SEO rather than deleting Stockypotty wrote: Hello, So I have some custom images as the background to my menu images, however I also have the text showing too, as can be

[jQuery] Re: Superfish - How do you delete the text that appears in the menu

2009-08-18 Thread Stockypotty
You sir are an absolute legend. I looked up what you said, found the CSS code in 10 seconds and added it it. Also you are completely right about it being better for SEO, so great!

[jQuery] Re: Superfish - animate menu on mouseout

2009-08-16 Thread Charlie
default built in the script is removing the class that allows visibility, there are no built in options to animate this you could modify hideSuperfishUl in script or build a custom "onHide" function Wolf wrote: Is it possible to animate the Superfish menu on mouseout (like a

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread Charlie
by "differently" do you mean different than example? or different for each sub level element? if former, you need to work through the css file and adjust to your design if latter, add classes to each sub element and create css rules accordingly, keeping in mind that you'll need to create

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
Ok, here is what I mean: http://zr.tixx4you.com/nav_flyout.asp I almost got it to work, but I can't figure out how to make to Hover class stay on (keep the main menu element highlighted) while the user hovers over the sub-elements. Thanks, -Roman

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
I think I figured it out, had to add one more selector to this (.sf- menu li.sfHover a) .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu li.sfHover a, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active { background-color:#f26921; background-image:url(images/logo_tiny2.gif); }

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
Ok, new problem, looks fine in Firefox, but in IE6 it just looks horrible. Any ideas? http://zr.tixx4you.com/nav_flyout.asp

[jQuery] Re: Superfish as popup menu?

2009-08-05 Thread Charlie
the popup menu example is just exposing a hidden element, regardless of what is contained in it, like a menu in your case very simple to get one to appear like the YUI example with a show on button click function // first hide menu on page load $('#menu').hide() //click button to expose menu

[jQuery] Re: Superfish as popup menu?

2009-08-05 Thread Ryan McKinley
Dooh -- now that you mention it, I should show/hide a vertical style menu (I was trying to figure out how to just show a submenu) thanks! On Aug 5, 2009, at 7:45 AM, Charlie wrote: the popup menu example is just exposing a hidden element, regardless of what is contained in it, like a menu

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-04 Thread CanisVoriCanis
I'm not using the superfish menu but if your looking for example code where I had to overcome the same problem. www.jasonsGuns.com - Search - FFL Services I know an example can always help.

[jQuery] Re: Superfish vertical menu, sub-menu item overlap problem

2009-08-04 Thread rupak mandal
Hi BenI think the problem is off using position relative, change in css .menu li:hover { visibility: inherit; position:relative; } On Wed, Aug 5, 2009 at 3:16 AM, Ben bccar...@gmail.com wrote: In an ideal Superfish vertical menu setup, you match the width of the first ul with the offset

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-03 Thread CanisVoriCanis
I just had a similar problem and my here is my solution. first some html div idcontainer div id=menumenu.../div div id=map_container/div /div You must set all of the div tags two properties of position and z- index, ie. { position:relative; z-index:; } You can set other style

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-03 Thread rupak mandal
Thanks for the suggestion.I got the solution.We have to just change the superfish.css .sf-menu li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ position:relative; z-index:999; } and it will work. On Mon, Aug 3, 2009 at 11:38 AM, CanisVoriCanis code.l...@gmail.com wrote: I

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-01 Thread Boris Anthony
Having the same problem. From what I can gather, Superfish in IE7 goes behind any element that has position:relative; declared, and it just so happens that embedded Google maps seem to require it's container to declare that explictly. I can't provide a demo right now (about jump on a plane) but

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-01 Thread rupak mandal
Thanks for the responce. On Sat, Aug 1, 2009 at 7:36 PM, Boris Anthony boris.anth...@gmail.comwrote: Having the same problem. From what I can gather, Superfish in IE7 goes behind any element that has position:relative; declared, and it just so happens that embedded Google maps seem to

[jQuery] Re: superfish : how to create multi column menu

2009-07-31 Thread amuhlou
The multi-column look is more of an HTML/CSS issue than jQuery. Use Firebug to inspect the code of the page you linked and you'll see how they achieved multiple columns. You can also refer to http://www.alistapart.com/articles/multicolumnlists/ to see how to create multi-column lists. On Jul

[jQuery] Re: superfish : how to create multi column menu

2009-07-31 Thread Charlie
put a div into your sub li that you want coulumns in. Use supersubs plugin for auto width adjusting. Treat the sub li div as you would any other div, add columns to it etc. amuhlou wrote: The multi-column look is more of an HTML/CSS issue than jQuery. Use Firebug to inspect the code of

[jQuery] Re: Superfish drowdown doesn't close (IE 7 + IE 8 tested)

2009-07-26 Thread Charlie
try changing animation option for height to 'show' $('ul.sf-menu').superfish({ animation: {opacity:'show', height:'show'}, dropShadows: false }); you still get a slidedown effect and can also add option speed: conlabz-cs wrote: On one of our websites I'm using a horizontal

[jQuery] Re: Superfish drowdown doesn't close (IE 7 + IE 8 tested)

2009-07-26 Thread conlabz-cs
Thanks... It works fine for me! Charlie Tomlinson wrote: try changing animation option for height to 'show' $('ul.sf-menu').superfish({ nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; animation: {opacity:'show', height:'show'}, nbsp;nbsp;nbsp;

[jQuery] Re: Superfish

2009-07-25 Thread Charlie
you would be best off researching this on a Joomla forum. yvonne wrote: OK. I am not very skilled with Joomla and I need help installing Superfish. I tried on my local version to upload the ZIP file but I get an error message"Could not find an XML setup file in this package. Path does

[jQuery] Re: Superfish Wordpress

2009-07-22 Thread Charlie
you're php always assigns current page class to Home li class="current_page_item"a href=""Home/a/li try this: li ?php if(is_home()){echo 'class="current_page_item"';}? a href=""Home/a/li if you use the pathClass option properly you can shorten the superfish constructor $('ul.sf-menu')

[jQuery] Re: Superfish Features highly desired/needed.

2009-07-22 Thread JC
Hmmm.. I thought superfish was supposed to be sort of supported on this forum. I kind of was hoping for an answer from the developer. Charlie wrote: curious what makes you want it to become the defacto solution yet this is second time in 24 hours you've complained about it Supersubs plugin

[jQuery] Re: Superfish How to programatically unexpand menus.

2009-07-21 Thread JC
You wouldn't suppose you could give a hint of how to do this :) ? On Jul 20, 10:13 pm, Dhruva Sagar dhruva.sa...@gmail.com wrote: In the click event, you should also perhaps set the display css of the menu as none so that it hides again. Thanks Regards, Dhruva Sagar. Ted Turner

[jQuery] Re: Superfish How to programatically unexpand menus.

2009-07-21 Thread Dhruva Sagar
Well my suggestion would require you to dig into superfish's code and find the click handler and edit it to suit your needs. Tell me one thing, in case of a simple mouse click, does the menu then disappear ? I think it wouldn't in your case. Can you perhaps give a demo script how your making the

[jQuery] Re: Superfish rounded corners.

2009-07-21 Thread olsch01
I cannot check how well they would work together right now, but dd_roundies (http://www.dillerdesign.com/experiment/DD_roundies/) is a great and easy to apply jQuery plugin for creating rounded corners. On 21 Jul., 08:32, JC systeminthegli...@gmail.com wrote: Yes, another superfish question (my

[jQuery] Re: Superfish How to programatically unexpand menus.

2009-07-21 Thread Rick Faircloth
What I do is use .load in the success section of my ajax function to reload my menu. I .empty it first, then immediately .load it again... -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of JC Sent: Tuesday, July 21, 2009 1:13 AM To:

[jQuery] Re: Superfish How to programatically unexpand menus.

2009-07-21 Thread JC
Is the .load and .empty superfish plugin methods? On Jul 21, 6:59 am, Rick Faircloth r...@whitestonemedia.com wrote: What I do is use .load in the success section of my ajax function to reload my menu.  I .empty it first, then immediately .load it again... -Original Message- From:

[jQuery] Re: Superfish How to programatically unexpand menus.

2009-07-21 Thread Rick Faircloth
desire. I use the .empty and .load method mainly for dynamic menus. hth, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of JC Sent: Tuesday, July 21, 2009 2:48 PM To: jQuery (English) Subject: [jQuery] Re: Superfish How

[jQuery] Re: Superfish - open menu with ENTER key

2009-07-20 Thread JC
Yes, The keyboard navigation needs to be drastically improved. I love this plugin, but let's think about the navigation. I use primarily keyboard navigation to navigate around my OS/the web. I chose mac os x because of it's awesome menu navigation (OS.) Mac has quite a nice menu navigation. In

[jQuery] Re: Superfish Features highly desired/needed.

2009-07-20 Thread Charlie
curious what makes you want it to become the "defacto solution" yet this is second time in 24 hours you've complained about it Supersubs plugin provides excellent support for mega menus, what is lacking there for you? Asking for themes is being lazy, so really back to your complaint about

[jQuery] Re: Superfish Features highly desired/needed.

2009-07-20 Thread JC
Why would I want it to be defacto? Because it seams solid, supported, and supports keyboard nav. Yes , wanting themes is lazy, forgive me. I didn't know supersubs would allow mega menus. Here is the thread in which I describe optimal behavior.

[jQuery] Re: Superfish How to programatically unexpand menus.

2009-07-20 Thread Dhruva Sagar
In the click event, you should also perhaps set the display css of the menu as none so that it hides again. Thanks Regards, Dhruva Sagar. Ted Turner http://www.brainyquote.com/quotes/authors/t/ted_turner.html - Sports is like a war without the killing. On Tue, Jul 21, 2009 at 10:42 AM, JC

[jQuery] Re: Superfish Menu Drop Left ?

2009-07-18 Thread Charlie
yes, you can make it open left by modifying CSS. Rework left floats to right and sub ul positions from left to right mike177 wrote: Hello, Is there anyway to make a vertical super fish menu drop left? I have positioned the menu on the right side of the page so, I need sub-menus to drop

[jQuery] Re: Superfish nav-bar style hover problem

2009-07-18 Thread Charlie
you can add classes ( either hard code or script) to the main items that don't have children, then use a css hover and current rule that positions visible sub tags offscreen Matt Hull wrote: Hovering on the navigation that has no children - what's new, or Learn with us. Instead of showing

[jQuery] Re: Superfish Dropdown Menu help

2009-07-14 Thread Charlie
this happens all the time with Joomla menu extensions. Original menu CSS doesn't get removed, so now there are 2 sets of menu CSS rules operating on same menu. Since they are scoped differently in design, different elements may take have the original template rule take prescedence, while

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

2009-07-12 Thread Charlie
Following will return the index of li you are hovering over within it's UL onBeforeShow: function() { var parentIndex= $(this).parent("li").parent("ul").find("li").index($(this).parent("li")); // use parentIndex to calculate offset for (this)- per API *this* is the UL about

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

2009-07-12 Thread allenm541
Use .length() For example: var length = $('#something ul li').length(); On Jul 11, 9:25 pm, galilee99 he...@nickjacobs.net.nz wrote: Hi, any tips on how to count the number of li's?? On Jul 8, 11:51 am, Charlie charlie...@gmail.com wrote: you can use onBeforeShow to insert function to

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

2009-07-12 Thread deboni
The superfish menu is being used here. http://www2.sdnag.com/ Meanwhile I found at least one error in the superfish.js. This script is not using the no-conflict function. The superfish menu in itself is a great module but when using it in Joomla 1.5, it causes a lot of problems and there is no

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

2009-07-12 Thread Charlie
jquery plugins aren't written for specific use in Joomla or any other CMS, web app etc that uses multiple libraries. It's up to user to sort those issues out. You do have noConflict here! http://www2.sdnag.com/plugins/system/sc_jquery/jquery.no.conflict.js. The script is working fine. You

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

2009-07-11 Thread galilee99
Hi, any tips on how to count the number of li's?? On Jul 8, 11:51 am, Charlie charlie...@gmail.com wrote: 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

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

2009-07-09 Thread Fabinou
Hello Charly, Thanks for your help, i had a few mistake in my code, i fixed all, and now the page is well validated. Btw, i have page with no errors, fully validated, that doesnt work either, so i think it's not the problem :( Fab On 8 juil, 17:49, Charlie charlie...@gmail.com wrote: probably

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

2009-07-09 Thread Charlie
have you tried setting speed to a value? generally works when speed is set this way something like speed: 500 Fabinou wrote: Hello Charly, Thanks for your help, i had a few mistake in my code, i fixed all, and now the page is well validated. Btw, i have page with no errors, fully

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

2009-07-09 Thread Fabinou
Yes, i tried to put an absolue value, or 'slow' for example, still doesnt work. On 9 juil, 14:57, Charlie charlie...@gmail.com wrote: have you tried setting speed to a value? generally works when speed is set this way something like speed: 500 Fabinou wrote:Hello Charly, Thanks for your

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

2009-07-09 Thread josh
Hi, I had the same problem lately and I found a solution, all I did was increase the z index for the menu. An element with greater stack order is always in front of an element with a lower stack order. So the z-index for my menu is . I hope this will help you with the sites problem

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