MyBB Community Forums

Full Version: Postbit backgroud
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need a plugin where some usergroups customise their postbit background like this https://i.imgur.com/EYxoJ8h.png

TX
Hi. I think is not strictly necessary a plugin if you follow this guide:
https://community.mybb.com/thread-226672.html

The only exception will be in this point
[Image: 68747470733a2f2f692e696d6775722e636f6d2f...712e706e67]

Where you have to select the usergroups con can edit the field.
(2020-04-01, 04:27 AM)Mixy Wrote: [ -> ]Hi. I think is not strictly necessary a plugin if you follow this guide:
https://community.mybb.com/thread-226672.html

The only exception will be in this point
[Image: 68747470733a2f2f692e696d6775722e636f6d2f...712e706e67]

Where you have to select the usergroups con can edit the field.

I got it, but where do u insert this code

style="background: url({$post['fid4']})
I am looking for an answer as well Smile where exactly shall i put this code? I am a bit afraid of messing it up..
not sure if this helps but I played around in the inspect and can change the color of the  background, might be able to just add an image background to the css. 

.post .post_author {
    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: #f5f5f5;
    background-image: url("image url");
    padding: 5px;
    overflow: hidden;
}
just add the image url you want to use.
(2020-04-12, 10:35 PM)Allan Wrote: [ -> ]not sure if this helps but I played around in the inspect and can change the color of the  background, might be able to just add an image background to the css. 

.post .post_author {
    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: #f5f5f5;
    background-image: url("image url");
    padding: 5px;
    overflow: hidden;
}
just add the image url you want to use.

Thanks for the reply. I am personally aware of this way, but it's not what i was asking for. I was concerned where i shall put this code 
style="background: url({$post['fid4']})

i have tried postbit template, postbit classict template, but im getting confused at some point..
(2020-04-01, 05:23 AM)pixomaryt Wrote: [ -> ]
(2020-04-01, 04:27 AM)Mixy Wrote: [ -> ]Hi. I think is not strictly necessary a plugin if you follow this guide:
https://community.mybb.com/thread-226672.html

The only exception will be in this point
[Image: 68747470733a2f2f692e696d6775722e636f6d2f...712e706e67]

Where you have to select the usergroups con can edit the field.

I got it, but where do u insert this code

style="background: url({$post['fid4']})

(2020-04-12, 11:08 PM)ZombieDeath Wrote: [ -> ]
(2020-04-12, 10:35 PM)Allan Wrote: [ -> ]not sure if this helps but I played around in the inspect and can change the color of the  background, might be able to just add an image background to the css. 

.post .post_author {
    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: #f5f5f5;
    background-image: url("image url");
    padding: 5px;
    overflow: hidden;
}
just add the image url you want to use.

Thanks for the reply. I am personally aware of this way, but it's not what i was asking for. I was concerned where i shall put this code 
style="background: url({$post['fid4']})

i have tried postbit template, postbit classict template, but im getting confused at some point..

find
<div class="post_author">
in postbit_classic template and add
style="background: url({$post['fid4']})"
after "post_author" so it should look like
<div class="post_author" style="background: url({$post['fid4']})">
(2020-04-13, 05:33 PM)8guawong Wrote: [ -> ]
(2020-04-01, 05:23 AM)pixomaryt Wrote: [ -> ]
(2020-04-01, 04:27 AM)Mixy Wrote: [ -> ]Hi. I think is not strictly necessary a plugin if you follow this guide:
https://community.mybb.com/thread-226672.html

The only exception will be in this point
[Image: 68747470733a2f2f692e696d6775722e636f6d2f...712e706e67]

Where you have to select the usergroups con can edit the field.

I got it, but where do u insert this code

style="background: url({$post['fid4']})

(2020-04-12, 11:08 PM)ZombieDeath Wrote: [ -> ]
(2020-04-12, 10:35 PM)Allan Wrote: [ -> ]not sure if this helps but I played around in the inspect and can change the color of the  background, might be able to just add an image background to the css. 

.post .post_author {
    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: #f5f5f5;
    background-image: url("image url");
    padding: 5px;
    overflow: hidden;
}
just add the image url you want to use.

Thanks for the reply. I am personally aware of this way, but it's not what i was asking for. I was concerned where i shall put this code 
style="background: url({$post['fid4']})

i have tried postbit template, postbit classict template, but im getting confused at some point..

find
<div class="post_author">
in postbit_classic template and add
style="background: url({$post['fid4']})"
after "post_author" so it should look like
<div class="post_author" style="background: url({$post['fid4']})">


omg tyyy very mucuh! worked! Big GrinD