Hi. At my site the user account link and log out link is kinda close. Maybe add "|" between them?
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'))),
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'))).' | ',
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.
Comments
Comment #1
blackarma commentedYou 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.