XF 2.0 Sign Up Link to Page instead of Overlay

I helped toodlez via conversation but for anyone else:

Template PAGE_CONTAINER:

Find:
Code:
<a href="{{ link('login') }}" class="offCanvasMenu-link" rel="nofollow" data-xf-click="overlay" data-menu-close="true">

Replace with:
Code:
<a href="{{ link('login') }}" class="offCanvasMenu-link" rel="nofollow">


Then also same template for the register link as well if you want:
Find:
Code:
<a href="{{ link('register') }}" class="offCanvasMenu-link" rel="nofollow" data-xf-click="overlay" data-menu-close="true">

Replace with:
Code:
<a href="{{ link('register') }}" class="offCanvasMenu-link" rel="nofollow">
 
Top Bottom