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 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.
ul.dynamic li {
white-space: nowrap;
}
In the end it should look somehow like this.
Categories: SharePointTags: sharepoint , sub titles
Edit this page
Show statistic for this page