Greetings, after a farm (which I inherited from a predecessor) transition from SharePoint 2007 to 2013, I've been working on fixing a site that was using a heavily customized master page. One of the key items was a left navigation that utilized fly-out menus populated from an HTML table.
I've been tinkering with a master page in 2013 to replicate this as closely as I can with as little, and well documented, change to the master page as possible. So far I've had success in replicating the menu system by modifying the V4QuickLaunchMenu ASPMenu and utilizing term-based navigation. HTML changes are below:
<SharePoint:AspMenu id="V4QuickLaunchMenu" runat="server" EnableViewState="false" DataSourceId="QuickLaunchSiteMap" UseSimpleRendering="true" Orientation="Vertical" StaticDisplayLevels="1" AdjustForShowStartingNode="true" MaximumDynamicDisplayLevels="3" SkipLinkText="" />
The one thing I've been unable to figure out is how to get the fly-out arrow indicators to be horizontally aligned on the right side of the menu boxes. Anyone have any ideas? They currently appear just to the right of the menu text after an assigned pixel buffer.
Thanks!