Janik von Rotz


1 min read

SharePoint 2013 navigation sub menu titles cut off

By default SharePoint 2013 cuts off long sub menu titles in the navigation.

SharePoint 2013 Menu without space

SharePoint expects only titles without spaces in between words. This is miss behaviour is simply solved by adding a custom css in the master page template.

SharePoint 2013 Add CSS to Master Page

ul.dynamic li {
    white-space: nowrap;
}

In the end it should look somehow like this.

SharePoint 2013 Menu with space

Categories: SharePoint
Tags: sharepoint , sub titles
Improve this page
Show statistic for this page