Creating Navigation Component Hover Menus: Difference between revisions


(New page: To further customize the content within a Navigation Component, you can create Navigation Component Hover Menus! Installation of the [http://users.tpg.com.au/j_...)
 
mNo edit summary
Line 33: Line 33:




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


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


Line 52: Line 52:


Superfish also has a variety of options that can be tweaked. A list of these options are available on the [http://users.tpg.com.au/j_birch/plugins/superfish/#options Superfish documentation page].
Superfish also has a variety of options that can be tweaked. A list of these options are available on the [http://users.tpg.com.au/j_birch/plugins/superfish/#options Superfish documentation page].
====Example:====
An example of this can be viewed on the [http://example.viviti.com/web-tools Web Tools] page of http://example.viviti.com




[[Category:Tips & Tricks]]
[[Category:Tips & Tricks]]

Revision as of 10:38, 21 April 2009

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.


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