Creating Navigation Component Hover Menus


Revision as of 10:51, 21 April 2009 by Shanker (talk | contribs)

To further customize the content within a Navigation Component, you can create Navigation Component Hover Menus!

Installation of the Superfish plugin is necessary as this requires the use of jQuery.


Hovernav.PNG


Note: This works only with nested sub-menus created within the Navigation Component.


Configuring for all Navigation Components:

In order to activate the hover menus for all of your navigation components you'll need to follow the directions below:


1. Go to the My Website toolbar menu, and click on Edit Theme Source Code.
2. Click on the default.html in the table that lists your theme files.
3. Add the following code below code inside of the <head> element:


<script type="text/javascript" src="/extras/js/superfish.js"></script>
<script type="text/javascript"> $j(function(){ $j("ul.navigation").superfish() });</script>


4. Click the Save button at the bottom of the dialog.

The page should reload and any nested menus in your Navigation Component will now be activated when the mouse hovers overtop of the label.


Configuring for a specific Navigation Component:

If you just want the hover menu activated on one specific Navigation Component, you'll first need to get the CSS ID of the component. To do this, you'll need to:


1. Click the collapse component button in the Viviti status bar, so that the components ID are displayed.
2. Select and copy the ID into your clipboard (it should look similar to #component_0000)
3. Go to the My Website toolbar menu, and click on Edit Theme Source Code.
4. Click on the default.html in the table that lists your theme files.
5. You'll now need to add the following code inside of the <head> element:


<script type="text/javascript" src="/extras/js/superfish.js"></script>
<script type="text/javascript"> $j(function(){ $j("#component_0000 .navigation").superfish() });</script>


6. The second line of the above code needs to have #component_0000 replaced with whatever you copied as the components CSS ID.
7. Click the Save button at the bottom of the dialog.


Superfish also has a variety of options that can be tweaked. A list of these options are available on the Superfish documentation page.


Example:

An example of this can be viewed on the Web Tools page of http://example.viviti.com