Discussion:
superfish: disable arrows in first list
Thies
2009-12-30 14:51:34 UTC
Permalink
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
Charlie
2009-12-30 18:15:29 UTC
Permalink
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000066">
simple solution is use css to hide them, or use jquery to remove them<br>
<br>
Thies wrote:
<blockquote
id="mid_63ce65e8-39fe-4f33-9865-3fb811e17d72_e37g2000yqn_googlegroups_com"
cite="mid:63ce65e8-39fe-4f33-9865-***@e37g2000yqn.googlegroups.com"
type="cite">
<pre wrap="">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

</pre>
</blockquote>
</body>
</html>
Thies
2010-01-01 16:30:06 UTC
Permalink
Thanx, but if the solution would be so easy, I won't have problems.
Post by Charlie
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
Dasher
2010-01-01 02:51:22 UTC
Permalink
Hi Frank,

In the "$(document).ready(function() {" area...

Below the superfish ("$('ul.sf-menu').superfish({" call...

add...

$('ul.sf-menu > li > a span').remove();

I found that in this forum somewhere and that worked for me. Good luck
DLee
2010-02-15 04:04:46 UTC
Permalink
Hi Dasher,

That may make the arrows disappear, but the .sf-menu li element is
still stretched out as if there was still an arrow there.
Post by Dasher
Hi Frank,
In the "$(document).ready(function() {" area...
Below the superfish ("$('ul.sf-menu').superfish({" call...
add...
$('ul.sf-menu > li > a span').remove();
I found that in this forum somewhere and that worked for me. Good luck
Loading...