XF 1.5 How do I move the position of usergroup banners?

Bevy

New member
Hello,

I literally suck at css :) BUT I can get by with a little help from friends. Can someone please let me know how I can move the usergroup banners ( says staff) to display below the profile picture and above username?

upload_2016-5-31_13-1-4.webp

If this is not possible any guidance on making the banner square rather than wrapped?



Thanks in Advance!

Beverly
 
Edit the message_user_info template and move this..
Code:
{xen:helper userBanner, $user, 'wrapped'}

Below this...
Code:
<xen:username user="$user" itemprop="name" rich="true" />
 
One more quick question in regards to this. There is a small space between the banner and profile pic is it possible to get rid of that space?

upload_2016-5-31_20-24-41.webp
 
Add this to EXTRA.css in your templates assuming you haven't made much edits to the default theme :
Code:
.messageUserBlock h3.userText {
    padding-top: 0px !important;
}
 
Top Bottom