Try removing the window.load function, it makes no sense to bind the
different menu functions to different page load events
jQuery.noConflict();
jQuery(function($){ // this is document ready
$("ul.sf-menu").superfish({hoverClass:'sfHover',
pathClass:'active', pathLevels:0, delay:800, animat
if you need a different background for each class hover likely have to
build a series like following
.sf-menu li.green:hover, .sf-menu li.green.sfHover,
.sf-menu li.green a:focus, .sf-menu li.green a:hover, .sf-menu li.green a:active {
background: #CFDEFF;
outline: 0;
}
PTwatch wrote:
are you using abslolute or relative url's for source files? if relative
probably have to switch to absolute
initialsbr wrote:
I'm not sure what's wrong. I'm building a site in Wordpress. I
followed the directions on the Superfish site and things look good on
the home page but then the HTML
without seeing a link it sounds like path problems. Use firebug Net tab
to see if everything is loading
initialsbr wrote:
Also, it appears that the menu works fine on the home page but not on
any of the individual pages. Any suggestions there?
On Jan 17, 7:57 pm, initialsbr wrote:
superfish is fairly easy to program using the onBeforeShow option.
Using jQuery css functions you can make position changes to subs. There
is a bit of a mystique about "mega menus" . Reality of using UL LI
structure is you can put multiple columns inside an LI using most
block level container
lots of easy ways to do this depending on your markup.
assuming that the 2 links share the a parent container as in:
Other Link
good Link
then using .siblings() would be easy method
$('.vendors a').click(function(){
//ajax
$(this).siblings('a').hide();
return false;
});
witho
you can use jQuery UI css to skin other elements such as a menu. Add
the applicable classes to menu and volia
http://jqueryui.com/docs/Theming/API
Josh wrote:
That would be a really useful feature. I've just finished
implementing a UI with a graphic designer and it would be really nice
if
hat do I
> do with it, now?
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
ot;learning")... you'll make up that week in no time just by virtue of never
having to type document.getElementById() again :)
"Installing" jQuery is simply a link to the jQuery.js file.
If you're storing it locally, it's .
You can also point to google's repository
link doesn't work
mcpilot wrote:
I have Superfish installed on a website and have a 3-tier dropdown. li/
li/li. The 3rd tier is not positioned correctly, it's behind the
second tier. (http://208.84.152.20/~loveland1)
Lookiung for the CSS line to tweak to move that out.
Pat
when you put an actual url into tabs href it treats them as ajax tabs.
If you aren't using AJAX in them remove the url within the href and
replace with href=""
Coxy wrote:
No I'm not, and in my static mock-up everything was ok. It does this
on the live site, and I want to find out why. Do
"...how do you trigger your click function to work? or can the anchor
tag be used ?"
question isn't very clear about what you are trying to do. You can over
ride the href with a click function by using " return false; "
which over rides browser default action of opening the link, or you ca
appears you are using 2 different css attributes. 'background' and
'background-color'
try changing style to:
.content .division .category.selected {
background-color: red;
}
or see what happens in jQuery with
.css
("background");
John wrote:
Hi,
I used jQuery 1.3.2 and Firefox for the f
my point is to not confuse someone with a css problem by having to
change css selectors that work, and is the basis for structure of the
css in superfish
jQuery would work also with same selector $("ul li li"). The html
needs to be vaild for sure but OP was css
Šime Vidas wrote:
It viola
UL LI LI will still work as CSS selector. The second LI is still a
descendant of the first one, regradless of it's parent and the css is
written that way.
Šime Vidas wrote:
You mean UL LI UL LI, instead of UL LI LI?
Because you're not supposed to put LIs inside LIs...
The sub menu ul's are absolute positioned at {left:-999} when not
visible, then at {left:0} when visible.
To adjust position you need to modify the {left:0}
NetReach Australia wrote:
Hi,
I'm using Superfish menu system on my website and I am attempting to
move the sub items across, but wh
modify the superfish.css to accomodate design
zeebaah wrote:
Hello.
Ive just got the Superfish mod for my site but the blue color dosnt
look good with the design on my page and makes it impossible to read
the text in the menu, any way to change the color of the menu to red
like the old menu
one method to consider is hide the tab(s), then show when conditions
are correct
URBY wrote:
Hi i was wondering if it would be possible to lock out other tabs so
the user is stuck on one ..until a user hits a button.
For example an Admin is adding someone to a database- the Admin is on
the
not a full set of docs but this cheatsheet is pdf and can be very
helpful
http://www._javascript_toolbox.com/jquery/cheatsheet/JQueryCheatSheet-1.3.2.pdf
MISS_DUKE wrote:
Is it possible to download the jQuery API documentation to my local
hard-drive? If so, I don't need to connect the Inter
a link would help. There are likely some simple css solutions to your
problem
Anne wrote:
Hi all,
I am brand new to this. I have downloaded the sample files. I added
the navbar css to the example.html file. Everything works. My
problem is that the submenu is visible when I first load t
you'd likely find this a lot easier by either using a database or
array search
here's an example using JSON. All of the information is stored in JSON
until needed and can be searched easily with $.each
http://jsbin.com/ohulu/edit
CreativeMind wrote:
Hi,
I need the ways to solve the probl
site isn't loading jquery , or superfish css and script files. Suggest
removing one version of jQuery and only loading one.
Check the paths to all these files. If they are avaialbel at the
correct path you should be able to open them in a browser.
Example:
http://www.assured-it.com/modules/m
'plus').appendTo($
> ('#'+'parentdiv'+counter));
>
> but when i try to do this
> $(".ws_c1.plus").click(function() {alert('test');});
> It works on other child div's but not on the appended div's. I've also
> tried with
Oooh... once you're in, well, we can't just let you walk away.
O_o
On Tue, Jan 5, 2010 at 4:47 PM, Chikkis Corner wrote:
> Please unsubscribe me from this group.
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life
On Tue, Jan 5, 2010 at 1:10 PM, Scott Sauyet wrote:
> On Jan 5, 3:43 pm, Charlie Griefer wrote:
> > Within the function triggered by the click event, $(this) or this are
> both
> > references to the element that triggered the click.
>
> More precisely, "this&q
View this message in context:
> http://old.nabble.com/How-to-gain-reference-to-hyperlink-that-is-clicked-tp27026713s27240p27026713.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.
>
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
joomla extension will take care of inserting the head code needed as
well as provide various options in the admin for setting up menu.
Follow the extension instructions. Superfish website isn't really set
up for CMS extension installs, like Joomla, however the css tricks will
likely be useful
simple solution is use css to hide them, or use jquery to remove them
Thies wrote:
Hi,
is it possible to "disable" the arrows at superfish only at the first
list, so that the arrow will only be shown in the sublists?
Thanx a lot
Frank, Germany
can't tell what the problem is when you use default styling. Would be
much easier to help if the problem was visible, not theoretical
watchbill wrote:
I searched and tried implementing some suggestions regarding the
desire for transparent first level navigation so it will show the
sites na
the keyboard).
>
> On Dec 28, 1:17 am, Charlie Griefer wrote:
> > You just want the value of the one that's checked?
> >
> > $(':checkbox[name=number]').click(function() {
> > if ($(this).is(':checked')) alert($(this).val());
&
, 2009 at 1:08 PM, dziobacz wrote:
> I have:
>
>
>
>
>
> I would like to get value each time when one of these checkboxes will
> change status, how can I do that ? For example when first checkbox
> will be unchecked or second will be checked. Could You help me ?
>
>
>
I don't do much with flash but this looks strange to me
and is what is being written into DOM by your getScript
Tristan wrote:
if it can help, here's the link :
http://www.gamer-certified.fr/statistiques/par-hebergeur.php
1) yeap they are correct
2) i tryed that but it still not work
lots of possibilities here...a link would help.
1) are the correct values being sent in post? Firebug can be very
helpful for determining this using the "Show XMLHttpRequests" option.
2)getScript may be getting called prior to notes.php having finished
processing (AJAX is asynchronous), coul
lots of examples in the AJAX section of
jQuery.com.http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype
For your case following should work:
var valueIwantToSend="1223";
$.get("scriptname.php", { variable: valueIwantToSend},function(data){
$("#results").html(data)
});
egressor wro
to answer question "is this doable in jQuery"...yes it certainly is.
I would suggest using the cycle plugin due to it's robust API. The
right tabs can be managed the same as any of the pager examples, just
adjust your css accordingly. The text is handled by creating absolute
positioned contain
very hard to guess what the issue might be .can you post a link or
create a test page on jsbin.com?
slava wrote:
Hi,
I am trying to create a vertical menu with jquery.
I select the cells (divs) which have sub-menues and call .hover
function to show sub-menues on hover in and hide on h
for the arrows you can create absolute positioned containers over top
of the slides that fadeIn, show or whatever when hover over slide.
use the "next" and "prev" options to assign selector to your arrows
within the overlay containers
$("mySlideContainer").cycle({
//other options alread
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
123gotoandplay wrote:
hi,
have simple search form which works in list.php
Now i am 'loading' list.php in #content and now the search function
doesn't work.
what i have done
- change t
#x27;t seem to work this way and the only time more
> elements get added to to jquery object is if you use a selector.
>
> Sso I want to do more like :
> $("div").css("border", "2px solid red")
> .add($(this).children()) //see how this line i
$(".stuff");
> var $obj2 = $(".morestuff");
> $obj1.add($obj2);
> alert($obj1.length);
>
> This doesn't do anything, it looks like .add() only accepts selection
> strings which in my example would work but in what I really need to do
> I have no selec
:
> How would I go about send all of my checked checkboxes with the class
> of "filter" via ajax?
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
$('a[title=blog]')
On Wed, Dec 23, 2009 at 8:30 AM, Janmansilver wrote:
> I have to add som jquery magic to a link where the only unique
> identifier is the "title"-atribute?
>
> my code:
>
>
>
> How do I target this via Jquery?
>
--
Char
uot;string", i tryed to fix it
> myself but i didn't since i was afraid that i might ruin the code.
> What is the solution for this problem?
> Thank you
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
On Tue, Dec 22, 2009 at 10:40 AM, Charlie Griefer wrote:
> On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote:
>
>>
>> [ ... snipped ... ]
>>
>> Thanks for pointing me in the right direction. This is what I ended
>> up getting to work:
>>
>>
t jQuery code (unless
there's a compelling reason not to).
And yeah... just a preference. Not saying wrong or right. But I am saying
you shouldn't have "-had- to do that" :)
Anyway, glad you got it working. That's the important bit :)
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
by an asterisk. It replaces that
pattern with the alone (removing the asterisk).
Disclaimer: I'm no regex guru, so if anyone sees a way to clean up that
expression, please feel free.
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
question is clear ..solution however would take some custom coding of
the 2 main hide/show functions within plugin
if you manage to create a solution please post it here, others have had
same request
tominou50 wrote:
Hello,
I'd like to know if it's possible that the current sublevel ul is
(json) {
>alert("Data Loaded: " + json);
>})
>})
> })
>
> and its not working. Its set to work when a is changed by
> user and it should then get data back from ajax.php which is sending
> the data fine. But no alert is coming up and it seems its not wo
you have a bunch of issues going on. First take the $(document).ready
superfish constructor out of the internal functions of the plugin.
Calling the plugin itself from within the plugin code is asking for
problems( and it is throwing an error in Firebug)
since you have multiple script librarie
IE gives limited support to what you can do to style selects. As
suggested use a plugin, of which there are many, that convert select's
to alternate html yet retain similar functionality
fachhoch wrote:
that did not help me , I triedgoogle search but none of them worked for
me , please,
following assumes superfish.js is loaded with initial page
$("#mymenuContainer").load("mymenufile.xxx", function() {
$(".sf-menu").superfish( {//my superfish options});
});
callback function will fire after the html loaded.
Another method is to put the superfish constructor code a
').each(function(){
>$(this).attr('bgColor','red');
> });
>}
>else
>{
>document.getElementById('plusSign').innerHTML='+';
>$('th.ba_colspan, td.ba_colspan').each(function(){
>$(this).attr('bgColor','green');
>});
>}
> });
> });
>
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
t; But is that the preferred way of doing this?
>
As far as I am aware, yes... checking the length property is the way that
I've seen it done.
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
have you tried disabling the superfish.js and let menu operate in css
only mode? not sure how anyone can help without a link
Eelco wrote:
Hi,
I am using superfish in a Joomla template, and it works fine in all
browsers including IE6 and IE8, not in IE7 however. I do not have any
positioned
this thread should help
http://groups.google.com/group/jquery-en/browse_thread/thread/255652615420722c/093dd27ff7f2e7b3?lnk=gst&q=superfish+onbeforeshow#093dd27ff7f2e7b3
jonas wrote:
Hi!
Is is possible to check if a new UL is rendered outside the browser
window?
When using Superfish with
there is nothing in script or css that does anything with images.
Example doesn't have images in menu.
troop wrote:
Hi Everyone!
I encountered a really strange behavior of the superfish menu. It
works like a charm an FF etc. but on IE 8 (couldn't test it with a
lower one yet) the already
this can be accomplished with the onBeforeShow option. "This" within
onBeforeShow refers to the UL about to be shown. Using jQuery
$.offset() function to locate the offset of the UL within the menu you
can then use $.css() to make adjustments.
joge wrote:
hello,
I am using the superfish m
No simple solution. With some work you can setup an auto scrolling div
inside a dropdown. Markup would use one LI and custom styled div
container that you would put your links into and adapt a scroll system
to. There are quite a few auto scrollers, once you get one working in a
stand alone co
a link would help
have you tried the z-index fix suggested in faq's on superfish site?
slflinders wrote:
I was told this was the place to get support for the Superfish module.
Can anybody help me with the problem below?
Thanks.
On Dec 14, 6:42 pm, slflinders wrote:
Hi.
I just
ese are all input
> type="text" elements if that matters.
>
> Thanks, - Dave
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
you'll have to do some more to reset the visibility to visible on the
up move of course. Was just steering you into one possible way to find
the limits
Charlie wrote:
any tests on
.arrowdown will not be of benefit , you need to check for
position of it's parent .pane
sin
;,function(){
$(this).insertAfter($(this).next()).slideDown("slow");
if($(this).next("p").length==0) {
$(this).find(".arrowdown").css("visibility","hidden");
}
});
return false;
})
if the empty h3 tag exists in the DOM you can test the length of text
within it.
using theoretical class of "postDiv" loop through all the postDiv h3's:
$(".postDiv h3").each(function() { // "each" loops through all
matching selectors one at a time
if( $(this).text().length==0 ){
you may want to consider the jQueryUI draggable. It has containment
option
http://jqueryui.com/demos/draggable/
you also benefit from a big support group for UI
exodusnicholas wrote:
I'm using http://dev.iceburg.net/jquery/jqDnR/ this tiny drag plugin to
drag div.slider horizontally acr
this tutorial on event delegation should help
http://www.learningjquery.com/2008/03/working-with-events-part-1
if you follow tutorial you'll likely end up with some statement like:
if($tgt.is("#search_form")){
// do nothing
}else{
// do something
}
daft01 wrote:
i want to select the div
mails?
cheers
Charlie
On 11 Dez., 20:44, Charlie wrote:
> Hi,
>
> I'm a newbie in JQuery, but know JS and have allready used some JQuery-
> Plugins.
>
> But now I'm searching for a cool plugin which can handle the following
> stuff:
> - Tree where defined el
when in doubt the jQuery docs are your best friend
copy/paste straight from Ajax examples:
$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});
success callbacks fire when return data is r
next() is a sibling selector. Since it is contained within content div
it will only interact with elements within content
testing for length is a very handy method.
if( $(this).next().length==0) { // will return true if at bottom,
would have to test after the animation, or use length==1 if
page that gets loaded doesn't include head
have you tried $.getScript? or you can insert script in body of page
being loaded
http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback
Jojje wrote:
Hi!
I have a question regarding ajax.
In my script i have a lot of css rules set with jquery
nt write a text to
another div
I hope I didn't wrote too much and one can give me a good tip :-)
cheers
Charlie
Possibly a js conflict with mooTools, have you tried jQuery noConflict?
http://docs.jquery.com/Using_jQuery_with_Other_Libraries
It sounds more like a css problem but without a link is hard to guess
sop wrote:
Hi
came across a situation where i am using the nav-bar style menu in
conju
2 ways to approach the color
use the onBeforeSHow option withing superfish constructor to add a
class to your hovered tags, or add some li:hover >a rules
to change in css
you have to watch for the #navlinks a:link rules you have that will
superseded the superfish rules. Usually easiest to wo
did you try this fix from link on superfish site?
http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/
Zanfe wrote:
Hi all,
only in IE7 the submenu appear under my page's content.
I use bgframe plugin.
Here my code:
$("ul.sf-menu").superfish({
speed: 'fast',
autoA
Show us yours, first :)
On Thu, Dec 10, 2009 at 6:32 AM, jnf555 wrote:
> hi
> i am trying to ceate a page where one image fades in over another int
> the same position
>
> can anyone show me the code
> thanks
> jnf555
>
--
Charlie Griefer
http://charlie.griefer.com/
thanks,
no idea how I missed that, I certainly know better
Lukas Pitschl | Dressy Vagabonds wrote:
Hi Charlie,
If you check your code, you'll see that you're not quoting your stateName value,
hence the html code for your North Carolina option looks like this.
NC
what you w
Creating a set of dropdowns for US states as follows:
$.getJSON("../js/stateListJSON.txt",function(data){
$(data.statelist).each( function(i) {
var stateAbbr = data.statelist[i].state;
var stateName = data.statelist[i].name;
$("#job_state
easier solution is to turn off the insertion of the arrows within
superfish options
$("ul.sf-menu").superfish({autoArrows: false});
mikeromana wrote:
Sorry to be a newb, but I am trying to do the same thing where there
are no arrows in the main menu:
"Well, just delete the markup for t
a link would help a lot, guessing vs actual DOM inspection is futile
test11 wrote:
hi
when i am using superfish, during the page load beore the image/flash
gets loaded all the drop down list are getting displayed at a time .can u
suggest me how to hide those dropdown untill the image
no reason it won't, not sure what to spell
out other than follow the markup used in examples, make sure to include
css file(s) and script file for plugin
vertical version has a vertical css file in addition to standard
superfish.css
LTimmers wrote:
Need to know if this jQuery will work for
utton to create a new item, have that written to the database,
> update the list of items to reflect the addition, and then attach a click
> event to the list items allowing the user to select and edit the items.
>
> Is there a way to attach events to any list item in the UL without having
>
ry frustrating to work with and I don't like you now.
>
> PLEASE UNSUBSCRIBE ME!!
>
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
read http://docs.jquery.com
search amazon for jQuery. there are a few books.
On Tue, Dec 8, 2009 at 2:24 AM, police wrote:
> hi guys, i am interested learn j query, how to learn, can u send any
> easy way to learn site?
>
--
Charlie Griefer
http://charlie.griefer.com/
I have
This set of many tutorials is one of the best Google map resources you
can find:
http://econym.org.uk/gmap/
StephenJacob wrote:
I'd suggest checking out the Google API documentation for examples.
You can also look into some jquery google map examples at
ajaxrain.com ... but i think you'll f
open and hide are controlled by 2
functions. You would need to rewrite the
function hideSuperfishUl() which is at bottom of the js file
t.hinze wrote:
I am using Superfish and I think this menu is a nice think.
But now I have a problem: I want to say Superfish "Please let the
current Path
the subs are absolute positioned ,
to have them open on left side you can change:
.sf-menu li:hover ul,.sf-menu li.sfHover ul {
left: 0;
}
to:
.sf-menu li:hover ul,.sf-menu li.sfHover ul {
right: 0;
}
another convenience of the API is being able to use the on
nd it in here: http://docs.jquery.com/Events
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
});
>$(".testing").hover(function(){
>if (hide) clearTimeout(hide);
>}, function() {
>hide = setTimeout(function() {$(".testing").fadeOut
> ("slow");}, 500);
>});
>});
>
>
>
> this is my dynamic created
> content
>
> Thank you in advance.
>
--
Charlie Griefer
http://charlie.griefer.com/
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.
sounds like you aren't including superfish.css, modified it or this is
a Joomla or other type of template that has preexisting menu css. The
superfish css for all sub UL's is positioned offscreen
not much anyone can do to help without a link
test11 wrote:
I am using superfish for dropdown
jQuery undefined is typically caused by a path problem to jQuery.js, or
you may be making calls to jquery before it is loaded ( jquery needs to
load before any plugin files)
also check that you only hae one copy of jquery loading
webstudiolund wrote:
I get these faults:
jQuery is not defi
autoarrows: true
this appends the link with a span with an arrow image to show links
with subs and is adding addiitonal width, set to false
Dasher wrote:
Hello,
I am setting up my first superfish menu and having an issue with the
width of the top level link tabs.
When _javascript_ is of
I looked and I don't see any superfish css or script.
Alvin wrote:
I used Superfish on other website (www.dapuri.com) and it works well.
When I try to integrate it to this website, it doesn't work.
Please click the link below and take a look (this is a testing page,
ignore the standard me
Thanks all. I appreciate all the responses and examples. Really helps out
a lot.
Charlie
On Fri, Dec 4, 2009 at 11:34 AM, seasoup wrote:
> Got two more uses for ya. Namespacing of events:
>
> // set two click events with different namespaces
> $('.button').bind('
Hi Karl:
Awesome! Got it :)
Thanks for the explanation and examples.
Charlie
On Fri, Dec 4, 2009 at 9:01 AM, Karl Swedberg wrote:
> Hey Charlie,
>
> methods such as .click() and .mouseover() are just convenience methods.
> They all use .bind() internally. One nice thing abou
http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js</a>
">
$(document).ready(function() {
$('p.first').bind('click', function() {
alert($(this).text());
});
$('p.second').click(function() {
tp://localhost/testsite/">
Home
»
Does this help a bit?
It doesn't seem to be a width problem, because there is plenty of
space in the accordion list (horizontally). If the >> character were
in the same span as home, then it would be in the same line.
What do you
there are likely several solutions but modifying the _javascript_ in
superfish is not likely one of them. "break" doesn't tell anyone much.
A lot can be determined by viewing in a browser and looking at the css,
html etc. Posting a link would be your best bet for assistance
rotnme wrote:
Ha
shouldn't really need a plugin for this effect. Is a fairly simple
animation of containers positioned and z-indexed over top of slides
with a hover function.
KevinM2k wrote:
Hi,
I'm looking for a jQuery plugin that can do the same thing as this
site:
http://www.totalpropertyservices.co.u
a simple css rule you can add is
.sf-menu li.sfHover > a {color:}
superfish adds the sfHover class to active LI's ( parent and children)
. Using ">" only affects immediate child links of the sfHover class.
IE 6 doesn't support this I believe
jq wrote:
does anyone know how to make the
likely a width setting on "LI" or "A" tags, likely from old css as
superfish default css doesn't set widths. If text was just fitting
before then you are now adding a new element that doesn't fit without
wrapping to next line
Can see a lot if you provide link, easy to see what's happening with
there's a Joomla plugin that will install superfish css, script, a
substitute for supersubs and also i believe hover intent. The biggest
issue that comes up on this board regarding superfish is from Joomla
installs. The install works fine, but the existing menu css can
conflict with superfish c
1 - 100 of 798 matches
Mail list logo