-1

enter image description here

I need this divider (background) only for parent li-s, nothing else.

But getting in all child li's.

http://jsfiddle.net/rx8Mj/5 Hover on projects menu. You'll see what I'm talking about.

heron
  • 3,611
  • 25
  • 80
  • 148

1 Answers1

1
.sf-menu > li a{ background: image}

to

.sf-menu > li > a{ background: image}

http://jsfiddle.net/rx8Mj/6/

Justice Erolin
  • 2,869
  • 20
  • 19