Does anybody please know how to center-align the tabs in jQuery UI tabs?
(They are left aligned by default and I can't find the aligning option in the doc)
Here is a page where I use it to groups some charts and the current code is simply:
$('#chart_tabs').tabs();
UPDATE: The CSS code:
.ui-tabs .ui-tabs-nav {
text-align: center;
}
.ui-tabs .ui-tabs-nav li {
float: none !important;
display: inline-block;
}
suggested by Didier (thanks) has center-aligned the tabs, but also put some strange gap underneath the tab-"buttons":