MyBB Hacks

Full Version: Profile cover image help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I am a member of a forum which allows its upgraded members to upload a profile cover picture. I was hoping that there is a plugin that can do this (or even editing?)

So the finished product would look like this:
[Image: Untitled.png]

I know there was an old mod HERE that sort of did it, but I have tried it out and it just sits above the profile and not attached to the main profile area.

I was hoping there was a plugin that did this with permissions per group?

Thanks for any help.
If you're still using that plugin, go to its template code from that plugin and strip the code down until it's just the image link and save it.

Now go to your memprofile template and create a div box with the following code

Code:
<div style="background-image:url($profile_bg_variable);background-size:cover;background-position:center;height:300px;">Arrange user information inside this div</div>


Replace $profile_bg_variable with the variable of your profile background plugin and arrange the user information inside that div.

Reference URL's