Building website navigation

Navigation is a necessary part of every website. The purpose of navigation is to:

  • Allow users to easily move between pages
  • Provide an overview of the website’s content

Kentico stores pages as documents in the website content tree. The basic principle of dynamic navigation is to load document data, such as page names and URL information, and use the data to generate links. The appearance of the links primarily depends on the website’s CSS.

You can use the following default components to build your site’s navigation:

Navigation web parts

Navigation controls

On portal engine pages, build your navigation using the following web parts:

  • Breadcrumbs
  • CSS list menu
  • Drop-down menu
  • Tab menu
  • Tree menu
  • Tree view
  • Site map

Use controls to create navigation on ASPX page templates or inside custom components:

All navigation components contain a built-in data source for loading documents (except for the BasicTabControl control).

You can choose which documents to load by configuring standard document filtering properties, such as the Path, Document types or WHERE condition. Use the Select only published and Check permissions properties to ensure that the navigation is accurate on the live site.

Please be aware of the following behavior when working with navigation components:

  • Navigation components load and display data according to the navigation properties of documents.
  • If the Path property is empty, navigation components load all documents on the website (equivalent to /%).
  • If the Document types property is empty, navigation components load and display only CMS.MenuItem documents (pages). The Breadcrumbs / CMSBreadcrumbs component is an exception, and displays all document types by default.
  • When writing ORDER BY expressions for navigation components that display documents in a tree structure, the root of the document tree (or sub-tree) must be first in the resulting order. Always start your Order By clauses with the NodeLevel column, for example: NodeLevel, NodeOrder
  • Navigation data sources always load a default set of document columns (required to correctly display pages in menus). The Columns property allows you to add extra columns if your menu needs data from a field that is not included in the defaults. To find a full list of the default navigation columns, use the SQL queries debuggingtool and inspect the query performed by your navigation component.

Tip: If the default navigation web parts do not fulfill your requirements, you can create custom navigation elements by connecting a document data source to a standard listing web part with an appropriate transformation. The transformation gives you full control over the HTML code rendered for the items in the menu.

Example - Creating a menu

The following example demonstrates how to create a basic two-level menu using the CSS List menu web part.

The CSS List Menu web part loads document data and renders links inside standard HTML lists (composed of <ul> and <li> elements). The links automatically lead to the appropriate document URLs and display the document names in the link text.

Adding the menu web part

  1. Open your website in the Pages application.

  2. Create a new page.

  3. Open the new page’s Properties -> Template tab.

  4. Select None in the Page nesting section and click Save.

    • Disabling page nesting is not a required step for creating menus, but allows you to have a completely blank page for the purposes of the example.
  5. Switch to the Design tab.

  6. Add theCSS List menuweb part to the page.

  7. Configure the web part’s properties:

    • Content filter -> Maximum nesting level: 2 (ensures that the menu only loads and displays the first two levels of the website’s content tree)
    • HTML Envelope -> Content before: <div class=“SimpleMenu”>
    • HTML Envelope -> Content after: </div>
  8. Click OK.

The web part displays an unstyled list of document links. Documents on the second level in the site’s content tree appear in sub-lists under the parent documents.

CSS list menu without styles

Defining CSS styles

Implement the design of the menu using CSS stylesheets. You can either assign a separate stylesheet to the page (shown in the example) or use the website’s main stylesheet.

  1. Open the page’s Properties -> General tab.

  2. Uncheck the Inherit box next to the CSS stylesheet property.

  3. Click New.

  4. Type a Display name for the stylesheet and enter the following CSS code:

    
    
    
     .SimpleMenu UL {
       Border: #c2c2c2 1px solid;
       Float: left;
       Font-size: 12px;
       Font-family: Arial;
       Background: #e2e2e2;
       Padding: 0px;
       Margin: 0px;
       List-style-type: none;
     }
    
     /* Makes the first menu level horizontal */
     .SimpleMenu LI {
       Float: left;
     }
    
     .SimpleMenu A {
       Padding: 3px;
       Margin: 0px;
       Display: block;
       Width: 120px;
       Color: black;
       Text-decoration: none;
     }
    
     /* Highlights menu items on mouse-over */
     .SimpleMenu A:hover {
       Background: #808080;
       Color: white;
     }
    
     /* Hides the second menu level by default */
     .SimpleMenu UL UL {
       Display: none;
     }
    
     /* Displays the second level when hovering over an item on the first level */
     .SimpleMenu UL LI:hover UL {
       Display: block;
       Border-top: none;
       Width: 125px;
       Position: absolute; 
     }
    
    
     
  5. Click Save.

  6. Close the CSS stylesheet properties dialog.

  7. Save the document to assign the new stylesheet.

You can now view the menu on the live site. The menu displays the first level horizontally, and the second level appears when hovering over menu items with child documents.

List menu with CSS styes applied

Setting navigation properties for documents

You can configure how individual documents behave and appear when displayed by menus or other navigation elements.

  1. Open the Pages application.
  2. Select the document in the content tree (in Edit mode).
  3. Switch to the Properties -> Navigation tab.

Configuring the navigation properties of a document

The navigation settings apply when Kentico navigation web parts and controls display the given document.

Note: The navigation settings are not supported by standard listing components (for example if you display your navigation using a Repeater web part and transformations).

Basic properties

Property

Description

Menu caption

The name that navigation elements display for the document. If empty, the system uses the document name.

Show in navigation

Indicates if navigation controls and web parts display the document.

Note: Navigation components display documents if all of the following conditions are met:

  1. The Show in navigation box is checked.
  2. The document is published.
  3. The type of the document matches the document types configured in the given navigation web part or control. By default, navigation components only display Page (menu item) documents.
  4. If you enable the Check permissions property of the menu web part or control, users can only see documents that they are allowed to read.

Show in site map

Indicates if the document is included n the website’s Google sitemap.

Additionally, Site map web parts and CMSSiteMap controls only display documents that have this property enabled.

Property

Description

Standard behavior

Clicking the menu item opens the page as expected.

Inactive menu item

Clicking the menu item doesn’t cause any action — the item is disabled.

You can also fill in the Redirect to URL field, which allows you to automatically redirect users who access the page to a different location (for example when users access the given page through an external link).

Javascript command

The page runs the entered JavaScript command when users click the menu item.

Example: alert(‘hello’);return false;

Redirect to first child

Redirects users to the page’s first published child document (shown in parentheses).

Redirected documents are marked with the  icon in the content tree.

URL redirection

Redirects users to the target location when they access the given page. Applies in all situations, not only when users click on navigation elements.

Redirected documents are marked with the  icon in the content tree.

Example: http://www.domain.com or ~/products.aspx

Adding macro expressions

You can use macro expressions in the URL redirection / Redirect to URL and JavaScript command fields. Macros allow you to insert values of the given document, such as the alias path, node name. Use expressions in format {% ColumnName %}.

For example, entering:

  • ~/products.aspx?show=brand&aliaspath={%NodeAliasPath%}

Into the URL redirection field of the /MobileStore/Products/Android document redirects users to:

  • http://<domain>/products.aspx?show=brand&aliaspath=/MobileStore/Products/Android

Note: The system escapes all apostrophes in the source data to to avoid breaking JavaScript ( ’ -> \’ ).

The menu item design properties are available in three alternatives:

  • Standard design
  • Mouse-over design - style used when users hover their mouse over the menu item
  • Highlighted design - style applied if the page represented by the menu item is selected by the user

These values override:

  • The settings of individual navigation web parts (controls) unless their Apply menu design (ApplyMenuDesign) property is disabled.
  • The CSS styles defined in the page’s CSS stylesheet.

Note: Some of the properties may not apply to all navigation web parts and controls.

Property

Description

Menu item style

Style definition of the menu item. Enter values like when writing CSS classes in stylesheets.

Sample value: color: orange; font-size: 140%

Menu item CSS class

Assigns a CSS class from the page’s CSS stylesheet.

Sample value: h1

Menu item left image

Image displayed on the left of the menu item’s caption.

Sample values:

  • http://www.domain.com/image.gif
  • ~/Images-(1)/icon.aspx

Menu item image

Image displayed in menus instead of the item’s caption. You can enter absolute URLs or relative paths.

Menu item right image

Image displayed on the right of the menu item’s caption.

Using CSS prefixes

CSS prefixes allow you to:

  • Specify different styles for any level of hierarchical menus
  • Place multiple menu web parts or controls of the same type on the same page and differentiate their CSS classes

You can work with CSS prefixes when using the following navigation components:

Web parts

Controls

  • CSS list menu
  • Drop-down menu
  • Tree menu

Property name: CSS prefix

Property name: CSSPrefix

Note: To use CSS prefixes with the CSS list menu, you need to enable the Render CSS classes property.

Example

The following example shows how to specify different styles for individual levels of a CMSMenu control (or Drop-down menu web part):

  1. Fill in the CSSPrefix property of the web part or control with the following value: MainMenu;SubMenu;OtherLevels

    • Semicolons separate individual levels of prefixes.
    • Every prefix represents a lower level of the menu, starting from the main level (0).
    • The last defined prefix also represents all remaining sub-levels.
    • If you only wish to differentiate between CSS classes used by multiple menus on the same page, setting one prefix level is sufficient.
  2. Define the following CSS classes in the page’s stylesheet:

    
    
    
     /* Class applied to the entire menu component */
     .MainMenuCMSMenu
    
     /* Classes applied to the first level of the menu (level 0) */ 
     .MainMenuCMSMenuItem
     .MainMenuCMSMenuItemMouseUp
    
     /* Classes applied to the second level of the menu (level 1) */
     .SubMenuCMSMenuItem
     .SubMenuCMSMenuItemMouseUp
    
     /* Classes applied to all underlying levels of the menu (level 2 and lower sub-levels) */ 
     .OtherLevelsCMSMenuItem
     .OtherLevelsCMSMenuItemMouseUp
    
    
     

    Set the names of the CSS classes according to the following format: <CSS prefix> + <Class used by the menu component>

The web part/control applies the appropriate CSS classes when rendering the corresponding levels of the menu.