MyBB Community Forums

Full Version: Image behind avatar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Alright you beautiful people, i'm going to apologize in advanced if this was already done.  But that being said i'm trying to figure out how to add a "image" behind the person's avatar.  As shown in the image below. 

[Image: kUU57M8.png]
You have to edit the theme global.css

Add into global.css:
.post.classic .post_author {
	background:#f5f5f5 url(PATH-TO-IMAGE) no-repeat center;
	background-size:cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	-ms-background-size:cover;
}
(2017-02-28, 12:41 PM)SvePu Wrote: [ -> ]You have to edit the theme global.css

Add into global.css:
.post.classic .post_author {
	background:#f5f5f5 url(PATH-TO-IMAGE) no-repeat center;
	background-size:cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	-ms-background-size:cover;
}

Yes, that worked like a charm. Sorry for the late response been so busy. Now is there away to set it for owner, admin, mod ect.? I tried with <If> statements but does not seem to be working.
Bump, any help is appreciated <3