No built in templates have flyout menus on the side or footer navigation. Flyout menus are only setup for the top navigation.
CSS Only for Hover FlyoutsYou could modify the template CSS to display the left navigation sub menus as flyouts, but they would be hover flyouts, so they wouldn't work well on tablets and mobile where you can't really 'hover'. Here is an example of some CSS you could add to your page (such as in the header field so it is on all pages).
- Code: Select all
<style type="text/css">
aside#bb-leftnav, aside#bb-rightnav {overflow: visible;}
div.left_pagelinks, div.right_pagelinks {position: relative; height: 26px; max-height: 26px;}
a.left_pagetitle, a.right_pagetitle, a.footer_pagetitle, #bb-leftnav #bb-gcl a {line-height: 20px;}
a.left_pagelink, a.right_pagelink {display: none; position: relative; top: -27px; left: 99%; line-height: 20px; background: #EFEFEF; padding: 3px 10px; z-index: 1000; opacity: 1; filter: opacity(100);}
div.left_pagelinks:hover a.left_pagetitle, div.right_pagelinks:hover a.right_pagetitle {background: #EFEFEF !important;}
div.left_pagelinks:hover a.left_pagelink, div.right_pagelinks:hover a.right_pagelink {display: block;}
</style>
CSS & JavaScript for Hover and Clickable FlyoutsIf you wanted actual flyouts that are hoverable on desktop and clickable on tablets and mobile, you would need to modify the left navigation menu with both custom javascript and custom CSS.