Spenser Active member Jul 31, 2013 #1 Hi! The avatar on my forum home is way too big: I wasn't able to find where to adjust the size. Please give a hint...
Hi! The avatar on my forum home is way too big: I wasn't able to find where to adjust the size. Please give a hint...
P Paul B XenForo moderator Staff member Jul 31, 2013 #2 This must be from a customisation you have made, or an add-on. Impossible to tell what the issue is from a screenshot. Upvote 0 Downvote
This must be from a customisation you have made, or an add-on. Impossible to tell what the issue is from a screenshot.
Spenser Active member Jul 31, 2013 #3 I reset everything I found. There should be a css that defines the size of the picture. Can you tell where this is? Upvote 0 Downvote
I reset everything I found. There should be a css that defines the size of the picture. Can you tell where this is?
P Paul B XenForo moderator Staff member Jul 31, 2013 #4 Avatar sizes are hard coded in the .php files for small, medium and large avatars. Upvote 0 Downvote
Jeremy in memoriam 1991-2020 Jul 31, 2013 #5 That looks like a large avatar, check sidebar_visitor_panel for <xen:avatar, what is that code? Upvote 0 Downvote
Spenser Active member Jul 31, 2013 #6 That is a useful hint, thanks. And how can I resize the thumbnails? Say from 192px (L) to 150px? Upvote 0 Downvote
Spenser Active member Jul 31, 2013 #7 King Kovifor said: That looks like a large avatar, check sidebar_visitor_panel for <xen:avatar, what is that code? Click to expand... <xen:avatar user="$visitor" size="l" img="true" /> Upvote 0 Downvote
King Kovifor said: That looks like a large avatar, check sidebar_visitor_panel for <xen:avatar, what is that code? Click to expand... <xen:avatar user="$visitor" size="l" img="true" />
Jeremy in memoriam 1991-2020 Jul 31, 2013 #8 Code: .sidebar .visitorPanel .avatar img{ width: 150px; height: 150px; } Putting that in EXTRA.css should do it. Spenser said: <xen:avatar user="$visitor" size="l" img="true" /> Click to expand... Change the l to m. Upvote 0 Downvote
Code: .sidebar .visitorPanel .avatar img{ width: 150px; height: 150px; } Putting that in EXTRA.css should do it. Spenser said: <xen:avatar user="$visitor" size="l" img="true" /> Click to expand... Change the l to m.