NOO Menu is structured so that every element can be targeted and manipulated via CSS. Most elements share reusable class names to affect styling, and the menu itself has unique IDâs that you can use to target specific elements within your menu. This section will show to you the basic structure as well as the class name so that you can add the style with our Custom Style option or within editing your themeâs style.
Here is the html mock-up of our NOO Menu, the explanation come further below.
<div class="noonav">    <div class="noo-megamenu">        <ul class="noo-nav level0">            <li class="noo-nav-item dropdown mega">                <a class="dropdown-toggle"href="#">Menu 1<bclass="caret"></b></a>                <div class="noo-nav-child dropdown-menu mega-dropdown-menu">                    <div class="mega-dropdown-inner">                        <div class="row-fluid">                            <div class="noo-col noo-col-nav">                                <divclass="mega-inner">                                    <ul class="mega-nav level1">                                        <li class="noo-nav-item">                                            <a href="#">Sub Menu 1</a>                                        </li>                                    </ul>                                </div>                            </div>                            <div class="noo-col noo-col-widget">                                <div class="mega-inner">                                    Widget                                </div>                            </div>                        </div>                    </div>                </div>            </li>        </ul>    </div> </div>
Outer Container
Our menu have 2 containers, the outer is a <div> with class ânoonavâ: <div class="noonav">
Inner Container
Inner container is a <div> with class ânoo-megamenuâ
The menu itself is one <ul> with class ânoo-nav level0â
<ul class="noo-nav level0">
Top Level item <li>
The top level items is the direct <li> child of the level0 ul. It can have several class:
- General class ânoo-nav-itemâ like all other menu item.
- With the item that have submenu, thereâs additional class âdropdownâ
- With the item that the children is widget or has column created by NOO Menu, thereâs additional class âmegaâ
<li class="noo-nav-item dropdown mega">
The <a> is the link of the menu item. Normal <a> has no class but with the item that has child items, thereâs additional class âdropdown-toggleâ and additional caret item.
- Normal <a>: <a href=”#”>Menu 1</a>
- <a> with sub items: <a class=”dropdown-toggle” href=”#”>Menu 1<bclass=”caret”></b></a>
Sub Menu has 2 levels containers, those are 2 <div> with class as below:
<div class="noo-nav-child dropdown-menu mega-dropdown-menu"> Â Â Â <div class="mega-dropdown-inner"> Â Â Â Â Â Â Â <div class="row-fluid">
The first two containers are the main container while the last container ârow-fluidâ is the container for creating the multi columns submenu.
<div class="noo-col noo-col-nav">
All columns are <div> with class ânoo-colâ, based on the type of the column, thereâs additional class attached.
- Column with normal menu items: class ânoo-col-navâ
<divclass="noo-col noo-col-nav">
- Column with widget: class ânoo-col-widgetâ
<divclass="noo-col noo-col-widget">
Sub menu content hs the <ul>, <li> structure like the Top Menu content:
   <ul class="mega-nav level1">        <liclass="noo-nav-item dropdown-submenu">            <ahref="#">Sub Menu 1</a>            ...        </li>    </ul>
There are some differences:
- The <ul> have the class with number indicated the level of menu: âlevel1â, âlevel2ââŠ
If the item has sub item, the <li> have class âdropdown-submenuâ instead of âdropdownâ like the top level.










If you want to add new widget, select Add widget: 












