Add Avatar to Visitor Tab [Deleted]

Thank you very much for your help, right now I am sending the details private.
Thank you.
 
@Steve F & @Russ - I think I had the same issue as @Tize in firefox that the edit jut breaks. I pasted in the edit correctly but what I did to resolve that was add a space between "account" & "username" with the code below.
Code:
<a href="{xen:link account}" class="navLink accountPopup NoPopupGadget" rel="Menu"><img src="{xen:helper avatar, $visitor, s}" class="miniMe" alt="{$visitor_username}" /><strong class="account Username">{$visitor.username}</strong>

When I tried the following the text username seemed to have got cropped when I did space them. Hopefully that sheds some light on that issue
Code:
<a href="{xen:link account}" class="navLink accountPopup NoPopupGadget" rel="Menu"><img src="{xen:helper avatar, $visitor, s}" class="miniMe" alt="{$visitor_username}" /><strong class="accountUsername">{$visitor.username}</strong>
 
@Shelley , did you change the CSS when you changed that class name? If not that would explain why it fixed the issue for you since 'display: block' wasn't being specified.
 
@Shelley , did you change the CSS when you changed that class name? If not that would explain why it fixed the issue for you since 'display: block' wasn't being specified.

I changed it slightly by adding a margin-top because I re-sized the avatar image a little. But before that at it's original size and new size when the class name wasn't separated I was getting this (below)

Screenshot_71.webp
 
Change the class="account Username" to its original state and add to EXTRA and see if ti fixes it for you.

Code:
.navTabs .navTab.account .navLink .accountUsername
{
    display: inline-block;
}
 
Hello everyone.
I want to comment that Mr Steve F, bothered and help me professionally and personalized in solving the problem with Firefox.
Thank you very much for your time, for your help and for your kindness friend.
Cheers and see you soon.
 
Top Bottom