For anyone who may want to move the Log Out link in the navigation sidebar and have it connect into another area, in the template account_wrapper, find this line:
[CODE]<li class="section">
<ul>
<li><a href="{xen:link logout, '', '_xfToken={$visitor.csrf_token_page}'}"
class="LogOut primaryContent">{xen:phrase log_out}</a></li>
</ul>
</li>[/CODE]
And comment it out.
Then below this line:
[CODE]<li><a
class="primaryContent"
href="{xen:link watched/forums}">{xen:phrase watched_forums}</a></li>
</xen:hook>[/CODE]
Add this:
[CODE]<li><a href="{xen:link logout, '', '_xfToken={$visitor.csrf_token_page}'}"
class="LogOut primaryContent">{xen:phrase log_out}</a></li>[/CODE]
The end result, which will place it under the Your Account section:
[ATTACH]97584[/ATTACH]
Credit to [USER=21621]@mistypants[/USER] [
] for doing this for us around the time I posted this thread, I just never got around to coming back here and posting that. I just realized it while working on our style the last few hours.