1

How to remove extra space of Kendo menu item displaying at end.

Here is an image of my menu:

Kendo Menu

In the above menu after Events it is displaying an extra blank. Is there any way to hide or remove it?

MSeifert
  • 145,886
  • 38
  • 333
  • 352
jestges
  • 3,686
  • 24
  • 59
  • 95
  • can you share your code? – Amit Sep 01 '14 at 10:45
  • I've taken from here http://jsfiddle.net/OnaBai/7bk2h/1/ and also I tried below link http://www.telerik.com/forums/that-space-to-the-right-of-the-last-item – jestges Sep 01 '14 at 10:49

1 Answers1

2

Define the following CSS style:

#menu {
    float: left;
}

Where menu is the id of the HTML element containing the menu.

Example here: http://jsfiddle.net/OnaBai/7bk2h/16/

OnaBai
  • 40,767
  • 6
  • 96
  • 125