MyBB Community Forums

Full Version: Plugin for Post-bit Background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I've read a lot of tutorials on here on how to get a postbit background.
None have worked, I only want it for one user.

Like this.

https://ibb.co/N7MYc8C

I'm willing to pay for a plugin or a way to do this thanks.
Can you share your website URL, I can help you with exact code for you Smile
(2019-07-01, 04:52 AM)WallBB Wrote: [ -> ]Can you share your website URL, I can help you with exact code for you Smile

Hi WallBB.

I messaged you back, thank you.
Thanks for sending URL, Use below code since your theme is default theme at bottom of css3.css or replace it in global.css

.post .post_author {

    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: url(URL_OF_IMAGE);
    padding: 5px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    color: #fff;

}

Change URL_OF_IMAGE with you image Smile

You can do a lot more like ever user has different image using Custom Profile Fields.

Cheers
WallBB
(2019-07-02, 05:46 AM)WallBB Wrote: [ -> ]Thanks for sending URL, Use below code since your theme is default theme at bottom of css3.css or replace it in global.css

.post .post_author {

    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: url(URL_OF_IMAGE);
    padding: 5px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    color: #fff;

}

Change URL_OF_IMAGE with you image Smile

You can do a lot more like ever user has different image using Custom Profile Fields.

Cheers
WallBB

Thats kinda what I'm after and sorry I took the theme down, but its back to normal now.
How would I achieve that with custom profile fields.
(2019-07-02, 01:06 PM)MI5 Wrote: [ -> ]
(2019-07-02, 05:46 AM)WallBB Wrote: [ -> ]Thanks for sending URL, Use below code since your theme is default theme at bottom of css3.css or replace it in global.css

.post .post_author {

    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: url(URL_OF_IMAGE);
    padding: 5px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    color: #fff;

}

Change URL_OF_IMAGE with you image Smile

You can do a lot more like ever user has different image using Custom Profile Fields.

Cheers
WallBB

Thats kinda what I'm after and sorry I took the theme down, but its back to normal now.
How would I achieve that with custom profile fields.

You will have to modify the postbit template or just switch to classic postbit for similar display style as in screenshot.

Cheers
(2019-07-02, 06:31 PM)WallBB Wrote: [ -> ]
(2019-07-02, 01:06 PM)MI5 Wrote: [ -> ]
(2019-07-02, 05:46 AM)WallBB Wrote: [ -> ]Thanks for sending URL, Use below code since your theme is default theme at bottom of css3.css or replace it in global.css

.post .post_author {

    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: url(URL_OF_IMAGE);
    padding: 5px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    color: #fff;

}

Change URL_OF_IMAGE with you image Smile

You can do a lot more like ever user has different image using Custom Profile Fields.

Cheers
WallBB

Thats kinda what I'm after and sorry I took the theme down, but its back to normal now.
How would I achieve that with custom profile fields.

You will have to modify the postbit template or just switch to classic postbit for similar display style as in screenshot.

Cheers

How would I do it only for one user?
(2019-07-02, 10:25 PM)MI5 Wrote: [ -> ]
(2019-07-02, 06:31 PM)WallBB Wrote: [ -> ]
(2019-07-02, 01:06 PM)MI5 Wrote: [ -> ]
(2019-07-02, 05:46 AM)WallBB Wrote: [ -> ]Thanks for sending URL, Use below code since your theme is default theme at bottom of css3.css or replace it in global.css

.post .post_author {

    border-bottom: 1px solid #ccc;
    border-top: 2px solid #ccc;
    background: url(URL_OF_IMAGE);
    padding: 5px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    color: #fff;

}

Change URL_OF_IMAGE with you image Smile

You can do a lot more like ever user has different image using Custom Profile Fields.

Cheers
WallBB

Thats kinda what I'm after and sorry I took the theme down, but its back to normal now.
How would I achieve that with custom profile fields.

You will have to modify the postbit template or just switch to classic postbit for similar display style as in screenshot.

Cheers

How would I do it only for one user?
Three ways to do that
It would be done using usercp of that user OR using User Edit in admin cp OR you can also run a database query for that single user.