Introduction
All the Quick Link menus provided by SharePoint2010 out of the box have a fixed format and altering its CSS alters its branding. Implementing collapsible headings in the quick launch for SharePoint 2010 (jQuery UI accordion effect) would solve this issue. All the solutions that I've seen are for sites and sub sites. In the site navigation settings, I have entered a heading with links to site pages under it.
My current navigation works fine. For example if a category is open it will remain open until the category is clicked on. I implement an accordion on SharePoint current navigation.
However we can do collapsing and expanding functionality using:
jQuery
If you want the accordion-style menu for all pages, you should work it into the v4.master.
You need to add the following code into the v4.master.
To edit, open the v4.master in SharePoint Designer 2010, share this piece of code to obtain an accordion style quick launch in SharePoint 2010.
- <script type="text/javascript" src="http://ajax.Microsoft.com/ajax/jQuery/jquery-1.7.1.min.js">
-
- <script type="text/javascript">
- $(function($) {
-
- $('.s4-ql li ul').hide();
-
- var Collapse = "/_layouts/images/collapse.gif";
- var Expand = "/_layouts/images/expand.gif";
-
-
-
- $('.s4-ql ul li').find('ul').each(function(index) {
- var $this = $(this);
- $this.parent().find('a:first .menu-item-text').parent().parent().parent().prepend(['<a class=\'min\' style=\'float:right; margin-left:5px;margin-top:6px;margin-right:5px;\'><img src=\'/_layouts/images/expand.gif\'/></a>'].join(''));
- });
-
- $('.min').click(function() {
-
- var img = $(this).children();
-
- var subList = $(this).siblings('ul');
-
- var Visibility = subList.is(":visible")? img.attr('src',Expand) : img.attr('src',Collapse);;
-
- subList.slideToggle();
- });
- });
- </script>
CSS
It is possible to do it with pure CSS. When it comes to SharePoint there is only one caveat; you can create a CSS with only an accordion menu as long as the accordion effect fires on hover and not when the navigation header is clicked.
Add the following CSS into the v4.master:
To edit, open the v4.master in SharePoint Designer 2010.
- <style>
- .s4-ql li.static
- {
- height: 2em;
- overflow: hidden;
- }
-
- .s4-ql li.static:hover
- {
- height: auto;
- }
-
- .s4-ql li > span.menu-item
- {
- cursor: pointer;
- }
-
- .s4-ql li > span.menu-item
- {
- cursor: pointer;
- background: #0171C6;
- color: white;
- border: solid #fff;
- border-width: 1px 0;
- }
-
- .s4-ql a.menu-item
- {
- color: #000;
- background: #C9D4FF;
- border: 1px solid #97C8F7;
- border-bottom: none;
- }
-
- .s4-ql li > span.menu-item:hover,
- .s4-ql a.selected,
- .s4-ql a.menu-item:hover
- {
- color: #FFF;
- background: #073D7D;
- }
-
- .s4-ql ul.root > li.static
- {
- max-height: 2em;
- overflow: hidden;
- transition: max-height 1s linear;
- }
-
- .s4-ql ul.root > li.static:hover
- {
- max-height: 500px;
- }
- </style>
Summary
As described in this article, there are two ways to implement an accordion in SharePoint 2010 (Current Left Navigation).