To set the Menu in width by content

Hi,

I got the menu from here: http://knowledgebase.bridge-delivery.com/jquery-ui-menu-horizontal-and-vertical/

I want to move it to the center:

.ui-menu { 
    overflow: hidden;
    margin: 0px auto;
}

and to set the Menu in width by content: http://jsfiddle.net/8Observer8/7Bvap/227/

Sorry for my English.

Thank you!

Looks like you can do this with CSS if I understand correctly what you want.

IE8+ only though.


.ui-menu { 
    overflow: hidden;
    margin: 0px auto;
    display:table;
}

Thank you very much :slight_smile: