I wanted do drop down global navigation menu in two and three column. How I will achieve this using SharePoint 2013? Kindly help me. Snapshot is attached with this what I actually want.
In advance Thank you.
2 Answers
Try this links , This is brief intro to how the Top Navigation (also known as Global Navigation) functions Out of the Box. Note: I am not talking about an easy solution to creating a consistent Navigation between Site Collections
https://sharepointotoole.wordpress.com/2013/05/30/global-navigation-in-sharepoint-2013/
https://newsignature.com/articles/no-code-global-navigation-flyout-dropdown-sharepoint-2013-online
- 585
- 4
- 14
-
This is not what I want. Actually I did structural navigation and its same as vertical links. I want 1st level only vertical as well horizontal links (column level drop down menu). In advance thank you. – Sachin Mar 01 '16 at 05:55
you can achive this using Manage MetaData and Navigation OOTB kindly Refer below Link this will help you get your result http://social.technet.microsoft.com/wiki/contents/articles/15876.sharepoint-2013-navigation-using-managed-metadata.aspx
Thanks
- 383
- 2
- 10
-
I tried with managed metadata but term set is not getting created. It shows this error: "Failed to create term set: A default managed metadata service connection hasn't been specified". For this I started managed metadata service application, but same output. – Sachin Mar 01 '16 at 06:20
-
You need to associate your metadata application with the default application proxy group. Go to Central Admin > Application Management > Configure Service application associations.
In the top right corner on the page, change the view to Service Applications. Click the "default" proxy group and check the box for your second Metadata application. Click OK and try again. and at the end reset IIS and Sharepoint Timer Service hope this will resolve issue
– S.P Mar 01 '16 at 06:27 -
-
http://social.technet.microsoft.com/wiki/contents/articles/23388.sharepoint-2013-failed-to-create-term-set-a-default-managed-metadata-service-connection-hasnt-been-specified.aspx – S.P Mar 01 '16 at 06:52
// Replace OOB class and set with your custom for level 2 var liCustomDynamicChildren = ul.children("li.menu_barL1"); liCustomDynamicChildren.children("ul").removeClass("dynamic").addClass("menu_barL2");
// Replace OOB class and set with your custom for Level 3 jQuery("ul.menu_barL2").children("li.dynamic-children").children("ul.dynamic").removeClass("dynamic").addClass("menu_barL3");
– Sachin Mar 01 '16 at 11:39