tags:

views:

37

answers:

2

I have added 1 rich:menuItem inside rich:dropDownMenu. but in the UI there is a extra space below the menuItem. how to remove that space.

+1  A: 

Use Firefox browser with the Firebug addon and inspect the element on your page.

Chances are it's a CSS issue.

Damo
+1  A: 

I had the same kind of issue. I've modified the rich-menu-list-strut CSS class to set its height to 0:

.rich-menu-list-strut {
    height: 0;
}
romaintaz