Redux by Orman Clark

Knowledgebase Docs » UberMenu 2 » Theme Integration
USEFUL? 0

Redux is great, it just requires some residual styling removal

  1. Open the theme’s header.php. Locate this line:
    <!-- BEGIN #primary-nav -->
  2. In the line below, change the ID of the #primary-nav div to uber-nav, so you have this:
    <div id="uber-nav">
  3. This removes the residual styling.
  4. By default, the menu will be full width and sit below the site title. If you would like the menu to appear in the original
    theme menu’s location, add this code:

    #uber-nav {
        margin-bottom: 40px;
        float: right;
        margin-right: -10px;
    }