Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS A menu item kept outside the collaped menu button Reply To: A menu item kept outside the collaped menu button

#237154
Atelierbram
Participant

The button I want everyone to click should be in the main menu of my site with Different css styling to draw attention to it.

  1. In the HTML, move the button to just outside the nav for the menu
  2. target this in the CSS using any layout module, like flexbox
<div class="wrapper-menu">
  <nav class="nav">
    <ul class="nav_list">
      <li><a href="#!">menu-item</a></li>
      <li><a href="#!">menu-item</a></li>
      <li><a href="#!">menu-item</a></li>
    </ul>
  </nav>
  <a href="#!" class="btn btn-cta">View Trial Lesson Times</a>
</div>