diff --git a/source/Ox.UI/js/Menu/Ox.MenuItem.js b/source/Ox.UI/js/Menu/Ox.MenuItem.js
index f0c60e6a..5afd74af 100644
--- a/source/Ox.UI/js/Menu/Ox.MenuItem.js
+++ b/source/Ox.UI/js/Menu/Ox.MenuItem.js
@@ -72,7 +72,9 @@ Ox.MenuItem = function(options, self) {
.append(
that.$title = $('
', {
'class': 'OxCell OxTitle',
- css: self.options.maxWidth ? {maxWidth: self.options.maxWidth} : {},
+ css: self.options.maxWidth
+ ? {maxWidth: self.options.maxWidth - 46}
+ : {},
html: Ox.isString(self.options.title[0])
? self.options.title[0]
: $(' ').html(self.options.title[0]).html()
|