How to add Login link to menu bar?

This theme is amazing!
I did write sth on support page but I guess I should post here so I can get answer.
Here is my site: http://dnnaremote.com/ I’m trying to add a login menu at the right side of menu bar. And the other menus remain at the left. Is there a way to do it?
Thanks a lot!

The simplest way of doing so would be to place your url in line 245 inside header-extensions.php located in theme folder → library → structure, to make it look something like this:

Screen Shot 2013-08-07 at 11.57.21 AM

And then go to Theme Options ->Other → Custom CSS. and style your newly created menu item accordingly.

.login {
    margin-left: 180px;
}

You might want to adjust margin-left size depending on your website. In my case it worked with 180px but it could be different for you.

It is not the cleanest way to get this done since theme is not built to support such cases.

Thank you very much! But I decided just put a login at the top right corner of the whole page.