Hello! We are using Superfish v1.4.8 jQuery plugin to display horizontal dropdown menu on my companys website.
We would like to extend Superfish functionality and use dividers to separate first level menu items. It can be done using left and right border, but not in case if you would like to use images as a divider element. So, we came up with a solution: <ul class="sf-menu"> <li>MenuItem 1</li> <li class="divider"><img src="div.gif"></li> <li>MenuItem 2</li> <li class="divider"><img src="div.gif"></li> .... </ul> The problem is, that Superfish plugin adds "sfHover" class to each LI element in UL. What we need, is to select only LI elements, where css class not equal to "divider". Could someone provide us an example how to do this. Thank you! Janno