How do I locate the 'Avatar Editor' Overlay?:

CritiKiL

Active member
I'm still not happy with my membercard border, and want to locate the 'avatar editor' overlay so that I can make a copy and size it the same as the membercard overlay because I would like all popups to have the same sized large 'blue-ish borders'. So how can I locate the 'avatar editor' overlay?
 

Attachments

  • file_avatareditoroverlay.webp
    file_avatareditoroverlay.webp
    80.6 KB · Views: 25
The member card uses a background image:

styles/default/xenforo/overlay/member-card.png

You can replace that image to include one that has a border.

Or you can redefine the member card to not use an image, and instead use your own colors:

Admin CP -> Appearance -> Templates -> EXTRA.css

Code:
.xenOverlay.memberCard
{
	background-image: none !important;
	background-color: green !important;
	border: red 20px solid;
	border-radius: 20px;
}
 
Oh wait, nevermind. I'm modifying with an image background and it's turning out perfect! Thank you Jake, this is "exactly" what I was looking to do! ;-)
 

Attachments

  • file_membercardimage.webp
    file_membercardimage.webp
    135.1 KB · Views: 17
Top Bottom