Photo of Jay Greentree

0

Drop down menu

I'm in the process of finalizing the new design of the church website using Rock and can't figure out how to make drop down menus for the main navigation. The closest I ever came I could only get one item to have a drop down. I need to be able to use several different drop downs because I'm trying to make it look as close to our current website as possible. Our current website is here: http://thursdaychurch.org

  • Photo of Jay Greentree

    0

    In the theme foler ("C:/inetpub/vhosts/domain.com/Themes/Assets/Lava") find PageNav.lava and paste the code from here:

  • Photo of Dillan Cagnetta

    0

    I think you are going to have to make an HTML block and create the menu and links manually:

    http://www.w3schools.com/bootstrap/bootstrap_navbar.asp

    <nav class="navbar navbar-inverse">
      <div class="container-fluid">
          <div>
          <ul class="nav navbar-nav">
          
            <li class="dropdown">
              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Page 1
              <span class="caret"></span></a>
              <ul class="dropdown-menu">
                <li><a href="#">Page 1-1</a></li>
                <li><a href="#">Page 1-2</a></li>
                <li><a href="#">Page 1-3</a></li>
              </ul>
            </li>
           
          </ul>
        </div>
      </div>
    </nav>

    Im not an expert but this is what i think