Hi.
At my site the user account link and log out link is kinda close.
Maybe add "|" between them?

Comments

blackarma’s picture

You can do that in modules code userloginbar.module file that located at sites/all/modules/userloginbar

Replace this (located at 68 line):
l(t('Your account'), 'user/'. $user->uid, array('title' => t('Edit your account'))),

With this:
l(t('Your account'), 'user/'. $user->uid, array('title' => t('Edit your account'))).' | ',

Im not coding guru but i used here same fashion as it used to seperate Register and Forgot password elements in this module.