XF 1.5 Large Visitor Panel Avatar Question

[xFv]

Well-known member
I sized up the visitor panel avatar by changing the "m" to "l" in message user info template.
My question now is, How can I center the username?

I have tried some css in extra.css but with no luck.
Here' what I have right now...
Code:
.sidebar .visitorPanel .avatar img
{Margin-left: 15px !important;}
.sidebar .visitorPanel .username h2
{text-align: center !important;}

EDIT* I have figured it out hopefully!
Code:
.sidebar .visitorPanel .avatar img
{Margin-left: 15px !important;}
.sidebar .visitorPanel h2
{text-align: center !important;}

Capture.webp
 
Last edited:
Following code is cleaner imo:

Code:
.sidebar .visitorPanel .secondaryContent {
    text-align: center;
}

aside .sidebar .visitorPanel .avatar {
    float: none;
    margin: 0 auto;
}

zSTpkMe.jpg
 
Actually, even with a fresh install of 1.5.5 and a fresh template edit for sticky navigation will break the sticky navigation doing this. this is weird!
 
Top Bottom