Log in

View Full Version : Show Thread Enhancements - Postbit Legacy - Usergroup Backgrounds vb4


Fastbird
12-03-2009, 10:00 PM
Updated for vBulletin 4.0.1!!!!

Hey Everyone! I went ahead and updated my vb3.x.x mod to work with the new coding in vBulletin 4. There are a few more modifications to make than the last time, but overall, I think you will find this very easy.

To start, let's look at a screenshot of what this mod will do for you, it's the image behind the username and the posbit information. This will not do anything else but assign a special background to the specified usergroup and assign the regular styling to all other usergroups:

DEMO: http://ltxtech.com/forums/showthread.php?9995-Official-To-Do-List-for-New-Upgrade

Now that you have decided to continue with the modification, let's begin!

Navigate to:

Style Manager --> Click on the << >> Next to the template you are editing -->CSS Templates

postbit.css


FIND:

.postbitlegacy .userinfo {
float:{vb:stylevar left};
position: relative;
width: {vb:math {vb:stylevar postbitlegacy_userinfo_width}-{vb:math {vb:stylevar padding}*2}};
padding: 2px {vb:stylevar padding} {vb:math {vb:stylevar padding}/2};
font-size: {vb:stylevar small_fontSize};
display:block;
background: {vb:stylevar postbit_userinfo_background};
_background-image: none;
_margin-top: -{vb:math {vb:math 16px*{vb:stylevar line_height}} + {vb:stylevar padding}-{vb:stylevar postbit_border.borderWidth}};
clear:both;
}


ADD UNDER:

/*Custom Postbit Background - Image*/
.postbitlegacy .userinfo2 {
float:{vb:stylevar left};
position: relative;
width:{vb:math {vb:stylevar postbitlegacy_userinfo_width}-{vb:math {vb:stylevar
padding}*2}};
padding: 2px {vb:stylevar padding} {vb:math {vb:stylevar padding}/2};
font-size: {vb:stylevar small_fontSize};
display:block;
background: #xxxxxx /*url(url to image here) no-repeat*/;
_margin-top: -{vb:math {vb:math 16px*{vb:stylevar line_height}} + {vb:stylevar padding}-{vb:stylevar postbit_border.borderWidth}};
clear:both;
}


---> Note: The Red xxxxxx is a color number. You need to specify a background color in case you aren't using an image. Remove the /* and */ around the url code to use an image. Otherwise it will just change the color of the box. I suggest fading the image to the color of the background you choose, as shown in the picture example.

FIND:

.postbitlegacy .userinfo .postuseravatar img, .eventbit userinfo .eventuseravatar img {
border: {vb:stylevar postbitlegacy_avatar_border};
outline: {vb:stylevar postbitlegacy_avatar_outline};
max-width: {vb:math {vb:stylevar postbitlegacy_userinfo_width} - {vb:math {vb:stylevar padding}*2}- {vb:math {vb:stylevar postbitlegacy_avatar_outline.borderWidth}*2} - {vb:math {vb:stylevar postbitlegacy_avatar_border.borderWidth}*2}};
}



ADD UNDER:

/*Custom Postbit Background - Avatar Border*/
.postbitlegacy .userinfo2 .postuseravatar img, .eventbit userinfo .eventuseravatar img {
border: {vb:stylevar postbitlegacy_avatar_border};
outline: {vb:stylevar postbitlegacy_avatar_outline};
max-width: {vb:math {vb:stylevar postbitlegacy_userinfo_width} - {vb:math {vb:stylevar padding}*2}- {vb:math {vb:stylevar postbitlegacy_avatar_outline.borderWidth}*2} - {vb:math {vb:stylevar postbitlegacy_avatar_border.borderWidth}*2}};
}


FIND:

.postbitlegacy .userinfo a.username, .eventbit .userinfo a.username {
clear:right;
font-size:21px;
font-weight:none;
width: auto;
max-width:{vb:math {vb:stylevar postbitlegacy_userinfo_width} - {vb:math {vb:stylevar padding}*2} - 20px};
word-wrap:break-word;
}


ADD UNDER:

/*Custom Postbit Background - Username Style*/
.postbitlegacy .userinfo2 a.username, .eventbit .userinfo a.username {
clear:right;
font-size:21px;
font-weight:none;
width: auto;
max-width:{vb:math {vb:stylevar postbitlegacy_userinfo_width} - {vb:math {vb:stylevar padding}*2} - 20px};
word-wrap:break-word;
}


FIND:

.postbitlegacy .userinfo .postuseravatar, .eventbit .userinfo .eventuseravatar {
display:block;
margin:{vb:math {vb:stylevar padding}/3} auto 0;
text-align:center;
width: auto;
}

ADD UNDER:

/*Custom Postbit Background - Avatar Position*/
.postbitlegacy .userinfo2 .postuseravatar, .eventbit .userinfo .eventuseravatar {
display:block;
margin:{vb:math {vb:stylevar padding}/3} auto 0;
text-align:center;
width: auto;
}


FIND:

.postbitlegacy dl.userinfo_extra dt, .postbitlegacy dl.user_rep dt {
float: {vb:stylevar left};
text-align: {vb:stylevar left};
/*color: {vb:stylevar shade_color};*/
margin-{vb:stylevar right}: {vb:stylevar padding};
margin-{vb:stylevar left}: 0;
min-width:60px;
width:auto !important;
width:60px;
}

ADD UNDER:
/*Custom Postbit Background - Userinfo Alignment*/

.postbitlegacy dl.userinfo_extra2 dt, .postbitlegacy dl.user_rep dt {
float: {vb:stylevar left};
text-align: {vb:stylevar left};
/*color: {vb:stylevar shade_color};*/
margin-{vb:stylevar right}: {vb:stylevar padding};
margin-{vb:stylevar left}: 0;
min-width:60px;
width:auto !important;
width:60px;
}

That does it for the CSS file. Now we need to do one last thing, and that's edit the posbit_legacy template.

Navigate to:

Style Manager --> Click on the << >> Next to the template you are editing -->Postbit Templates

postbit_legacy:

FIND:
<div class="userinfo">


REPLACE:

<vb:if condition="is_member_of($post, #)"><div class="userinfo2">
<vb:else />
<div class="userinfo">
</vb:if>


FIND:
<dl class="userinfo_extra">
REPLACE:
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<dl class="userinfo_extra">
</vb:if>

The RED # is the ID of the usergroup that you want to have a unique background. In my example picture, the administrators have the custom image, so the # sign is replaced in the code with a 6, because the ID for the administrator usergroup is 6. To find the ID, go to usergroup options in the AdminCP and look at the chart. The group ID should be on the same line as the usergroup name.

All right! You should now have a styled postbit legacy background image for a specific usergroup!

I can't really provide support, I'm extremely busy with work and life, but if I pop in from time to time I'll try to help. Also, please, please, please create your own background image. I do not want my image being used. If you would like to setup the modification and use my image to get it up and running, that's fine. But I am asking that you create your own after it's installed properly.

Good luck guys!

SİMAR
12-04-2009, 01:50 PM
thanks man

abouahmed
12-04-2009, 03:04 PM
nice mod

Fastbird
12-04-2009, 05:10 PM
No problem guys! Glad it worked for you and you liked it!

gedr80
12-04-2009, 08:03 PM
Thank you very much

Dr.osamA
12-05-2009, 09:42 PM
thnxxxx

installed
________
Extreme Vaporizer Q (http://vaporizer.org)

Cableguy69
12-21-2009, 12:33 PM
This hasn't worked right for me, Admin avatars were 150x150px, they've now been resized and lost there transparency, other than that it has worked, but what piece of code handles the avatar width?

I think transparency has been lost due to the image being resized.

Edit: I've found the resize code, I've changed this.

Cableguy69
12-21-2009, 12:46 PM
It's ok I've worked it out.

Installed

I replaced this

/*Custom Postbit Background - Avatar Border*/
.postbitlegacy .userinfo2 .postuseravatar img, .eventbit userinfo .eventuseravatar img {
background: #ffffff;
border: 1px dotted #d8d8d8;
padding: 3px;
max-width: 80px;
max-height: 80px;
}


With

/*Custom Postbit Background - Avatar Border*/
.postbitlegacy .userinfo2 .postuseravatar img, .eventbit userinfo .eventuseravatar img {
background: #ffffff00;
border: 0px solid #ffffff00;
padding: 3px;
max-width: auto;
max-height: auto;
}

Cableguy69
12-22-2009, 09:18 AM
Is it possible to put a background into more than 1 usergroup?

So I could have a different background for Mods and Vip's.

I.am
12-22-2009, 10:13 AM
It is possible to reduce the message area?

Fastbird
12-25-2009, 03:51 AM
It is possible, I'll get it sorted out once I update this mod to work with vb4 PL2, because right now I guarantee that everything will work from beta 4 to the new version.

Dr.osamA
12-26-2009, 03:27 AM
not work with 4 Gold

plzz updaet it

thanx
________
SHEMALE FETISH (http://www.++++tube.com/categories/961/fetish/videos/1)

Draygonia
12-26-2009, 02:46 PM
Definitely looking forward to this, excellent mod... I was thinking about paying someone to make it a few years back for a site idea I had... but this is just wonderful! Kudos!

Merjawy
12-26-2009, 08:30 PM
Very nice and useful indeed...

Thanks. tagged

Cableguy69
12-27-2009, 11:23 PM
not work with 4 Gold

plzz updaet it

thanx

Working for me.

http://www.hostmypics.org/pictures/d7774b5e87d93e2eb4d64cb3c7acb502.png

Bouncer222
12-29-2009, 01:21 PM
What should the dimensions of the images be in pixels? and If they are smaller than the actual "rectangle" where all the information is under the avatar etc.. is the image placed on the bottom or to the top or to the left or right? Like how is it shifted/placed?

Thanks.

Skyrider
01-05-2010, 07:57 AM
I think there's something wrong...

Your modification says to find the following:

.postbitlegacy .userinfo {
float:{vb:stylevar left};
position: relative;
width:{vb:math {vb:stylevar postbitlegacy_userinfo_width}-{vb:math {vb:stylevar
padding}*2}};
padding: 2px {vb:stylevar padding} {vb:math {vb:stylevar padding}/2};
font-size: {vb:stylevar small_fontSize};
display:block;
}

How ever, I found this:
.postbitlegacy .userinfo {
float:{vb:stylevar left};
position: relative;
width:{vb:math {vb:stylevar postbitlegacy_userinfo_width}-{vb:math {vb:stylevar padding}*2}};
padding: 2px {vb:stylevar padding} {vb:math {vb:stylevar padding}/2};
font-size: {vb:stylevar small_fontSize};
display:block;
background: {vb:stylevar postbit_userinfo_background};
_background-image: none;
_margin-top: -{vb:math {vb:math 16px*{vb:stylevar line_height}} + {vb:stylevar padding}-{vb:stylevar postbit_border.borderWidth}};
clear:both;
}

As you can see, the original is much longer so I think the installation instructions has to be adjusted.

Fastbird
01-05-2010, 11:36 AM
I haven't updated this to the newest VB release. This was written on beta 4, so the instructions are only for beta 4.

Dr.osamA
01-09-2010, 07:15 PM
Waiting
________
XXX FREE STREAMING (http://www.++++tube.com/)

Fastbird
01-16-2010, 02:52 AM
Updated for 4.0.1

TimberFloorAu
01-17-2010, 07:16 PM
Still have this tagged Fastbird, get it going for 4.0.2 please :up:

TimberFloorAu
01-17-2010, 07:20 PM
Ignore me I am a knob, will install :up:

Add:

Where does it pull the image from? Looking over code changes, I cant see where the image is extracted from. Is it profile pic?

Fastbird
01-18-2010, 09:37 PM
Ignore me I am a knob, will install :up:

Add:

Where does it pull the image from? Looking over code changes, I cant see where the image is extracted from. Is it profile pic?

If you want an image, you need to supply one and place it in the CSS. It's commented out. Check the first section of code to add/replace for it.

TimberFloorAu
01-18-2010, 09:48 PM
If you want an image, you need to supply one and place it in the CSS. It's commented out. Check the first section of code to add/replace for it.

Yeah got that but tried everything and to no avail. Great hack, but couldnt get it working for us.

Thanks anyhoo :)

your code:
background: #xxxxxx /*url(url to image here) no-repeat*/;


our code change:

background: #ff9900 images/bg.jpg no-repeat;


Didnt produce anything.
Even tried absolute URL

Fastbird
01-18-2010, 10:22 PM
Yeah got that but tried everything and to no avail. Great hack, but couldnt get it working for us.

Thanks anyhoo :)

your code:
background: #xxxxxx /*url(url to image here) no-repeat*/;


our code change:

background: #ff9900 images/bg.jpg no-repeat;


Didnt produce anything.
Even tried absolute URL

That's because you removed too much of the code from the CSS. You need to use this line:

background: #ff9900 url(images/bg.jpg) no-repeat;

Bouncer222
01-21-2010, 09:54 PM
I see on your site you used different images for different usergroups, how do I do the same??

Fastbird
01-21-2010, 10:07 PM
One usergroup is like this:

<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<dl class="userinfo_extra">
</vb:if>

Two usergroups is like this:
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra3">
<vb:else />
<dl class="userinfo_extra">
</vb:if>
</vb:if>

You keep adding the statement over and over and then add a vb:if at the end for each additional phrase you add. Then, you must duplicate the css each time for each usergroup. So, in the example for installation, I use userinfo2 for the duplicate css codes. Each additional usergroup will have an incremental increase, so the css for the 2nd usergroup would be userinfo3, the 3rd user group would use userinfo4, and so on. Just keep duplicating each of the steps above for each usergroup.

Bouncer222
01-21-2010, 10:22 PM
It's not possible to make it simpler? Because duplicating css I think shouldnt be necessary if you can somehow do that.

Fastbird
01-21-2010, 10:45 PM
It's not possible to make it simpler? Because duplicating css I think shouldnt be necessary if you can somehow do that.

If there's a simpler way, I don't know it. The way I explained it is known to work, so if there is a better way, then by all means go for it. I just don't know what that way is, sorry :(

patrick91
02-28-2010, 05:05 PM
Thnx i will install this soon! but how do you get your postbit look like that???

DeadRabbit
07-17-2010, 02:36 PM
can i add two or more usergroup ids?

DeadRabbit
07-17-2010, 02:37 PM
One usergroup is like this:

<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<dl class="userinfo_extra">
</vb:if>

Two usergroups is like this:
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra3">
<vb:else />
<dl class="userinfo_extra">
</vb:if>
</vb:if>

You keep adding the statement over and over and then add a vb:if at the end for each additional phrase you add. Then, you must duplicate the css each time for each usergroup. So, in the example for installation, I use userinfo2 for the duplicate css codes. Each additional usergroup will have an incremental increase, so the css for the 2nd usergroup would be userinfo3, the 3rd user group would use userinfo4, and so on. Just keep duplicating each of the steps above for each usergroup.

thanks, i havent read this one. lol :D

merk_aus
07-26-2010, 09:05 AM
Is it possible to have this linked to custom user fields instead of usergroups?

eg: I want people to select their favorite sporting team and have a background of that sporting team display.

midnz
07-30-2010, 09:35 PM
It's not possible to make it simpler? Because duplicating css I think shouldnt be necessary if you can somehow do that.

If there's a simpler way, I don't know it. The way I explained it is known to work, so if there is a better way, then by all means go for it. I just don't know what that way is, sorry :(

There is an easier way using vB 4.0.5 for adding a single image to the postbit background. I don't know if it works on postbit_legacy because I haven't tried it. I'm wanting different backgrounds per usergroup which I'm struggling to achieve despite the instructions posted on this thread :confused:

http://img340.imageshack.us/img340/9725/postbitbackground.jpg

midnz
07-31-2010, 12:19 AM
Uninstalled until clearer instructions are provided for separate bg postbit images for multiple usergroups or my knowledge increases to where my forum isn't being screwed up with each attempt.
Moving on....

Bouncer222
10-03-2010, 08:47 PM
is this still working for 4.0.7??

zonaenlinea
10-07-2010, 11:58 AM
for 4.0.7

Prohibit
10-26-2010, 06:59 PM
for 4.0.7

???????????????

:confused:

Prohibit
10-26-2010, 07:53 PM
Well, the background is working.

But it has thrown my post bit kind of out of whack.


Okay, got it going. Thank you for the mod! :)

murekhalir
10-30-2010, 09:43 PM
sweeet gotta try this now.

Kyojii
12-14-2010, 09:49 PM
the .css added messes with the center postbit addon and doesn't seem to work. Any ideas?

I added this, but it still doesn't center my Administrator title. The join date or posts.

.postbitlegacy .userinfo2 .postuseravatar, .eventbit .userinfo2 .eventuseravatar {
float:none !important;
text-align:center !important;

}
.postbitlegacy .userinfo2 .username_container, .postbit_reputation, .postbitlegacy .userinfo2 .rank, .postbitlegacy .userinfo2 .usertitle {
text-align:center !important;
}

Fastbird
12-17-2010, 01:21 AM
the .css added messes with the center postbit addon and doesn't seem to work. Any ideas?

I added this, but it still doesn't center my Administrator title. The join date or posts.

.postbitlegacy .userinfo2 .postuseravatar, .eventbit .userinfo2 .eventuseravatar {
float:none !important;
text-align:center !important;

}
.postbitlegacy .userinfo2 .username_container, .postbit_reputation, .postbitlegacy .userinfo2 .rank, .postbitlegacy .userinfo2 .usertitle {
text-align:center !important;
}


I actually updated this to 4.1 a few weeks ago for our forum. I will update this hack over the weekend for you guys.

If you want to center your username and title, you need to do that in the actual postbit_legacy template.

smirkley
12-17-2010, 02:05 AM
This is a nice add-on,...

It would absalutely ROCK if it could be enhanced by having a edit feature for each persons usercp so they could select their own background color/image independantly. With usergroup permission settings of course.

Fastbird
12-17-2010, 10:39 PM
This is a nice add-on,...

It would absalutely ROCK if it could be enhanced by having a edit feature for each persons usercp so they could select their own background color/image independantly. With usergroup permission settings of course.

That would be quite the undertaking, but yeah would be very cool.

Mobo
12-23-2010, 04:46 AM
I'm trying to automate the selection of the background images based on two profile fields the users selects. I was able to do this in the 3.8 version with this code:

<if condition="$post[field#] == 'Option'">
<elseif condition="$post[field#] == 'Option'">
<td class="postbitbg7" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
<else />


Changing the red # to the field number you want to use as well as the red Option, which is the text for that field.

I would like to be able to do this same thing on vB4 now. However, the vastly increased amount of code has put this beyond me. I would not need the size/border coding as above, I've got it working and looking good with the current code (based on usergroups, not fields like I would like)

Can anyone help with this?

Thanks in advance,

Keith

Alien123
04-03-2011, 04:03 AM
I actually updated this to 4.1 a few weeks ago for our forum. I will update this hack over the weekend for you guys.

If you want to center your username and title, you need to do that in the actual postbit_legacy template.

it says adding child to non-existent node! im on vb 4.1.2

discodoran
04-17-2011, 09:00 AM
my image just cuts out when it reaches the end of the users info so straight after POSTS the image stops and does not use up all of the postbit legacy

im on vbulletin 4.1.3 could someone please help me with the problem cheers

I can provide pictures if needed

discodoran
04-20-2011, 01:12 AM
sorry guys here is an image of mine and im stuck where the red box is thats where it cuts off i would like the colour to go all the way to the bottom of the postbit

please help any help is much appreciated thanks in advance

TheTrust
04-20-2011, 10:47 PM
Thank you ... can you update it for 4.1.3

discodoran
05-01-2011, 11:34 PM
yer please update for 4.1.3
Thank you

Fastbird
05-15-2011, 11:44 PM
I looked through, there is really nothing to edit guys. I just updated my forum and did not have to update anything to this mod to get it functioning.

What issues are you having?

Chase
05-17-2011, 09:48 PM
Thnx i will install this soon! but how do you get your postbit look like that???

I would really like to know how you did this as well. Can you share? :D

ranafarooq
05-24-2011, 11:04 AM
can i have its more snaps please as when i click at demo link the msg comes that admin has banned your ip although I had never visited that forum its strange

lavagod
05-24-2011, 10:14 PM
Is there anyone willing to help me do this on my site?? I would to have some one who has done this and it has worked on VB 4.1

discodoran
05-28-2011, 12:07 AM
I looked through, there is really nothing to edit guys. I just updated my forum and did not have to update anything to this mod to get it functioning.

What issues are you having?


please check out my post I really dont know what the problem is cheers mate
https://vborg.vbsupport.ru/showpost.php?p=2186505&postcount=48

River J
08-10-2011, 01:06 AM
Doesn't work on vB4.1.5

WDS
08-24-2011, 12:25 AM
for this to work with Horizontal profile that I modify?
I have the Version 4.1.5

PBRiot
09-08-2011, 06:55 PM
This looks really cool, but I was wondering if it was possible to get it as an installable mod and not a hard coded mod?

WDS
01-09-2012, 03:47 PM
Hello, I wonder how I can put back the Horizontal postbit
http://www.webpagescreenshot.info/i/84970-19201264631pm.png

d19rnyxx
02-18-2012, 04:35 AM
Brilliant mod but can't get it to work because of the custom theme.

HHelp1
02-18-2012, 01:57 PM
Brilliant mod but can't get it to work because of the custom theme.

yES and i think it no longer work for 4.1.8 or greater

RobbieZ
02-18-2012, 03:16 PM
yES and i think it no longer work for 4.1.8 or greater

Still working on 4.1.11 !

HHelp1
02-18-2012, 10:08 PM
Only for default ? Or any style ?

wishtheend
03-13-2012, 11:16 PM
Installed fine, but does anyone know if the userinfo2 can be extended so it runs the length of the actual post? Mine also cuts off after the user info, but I'd like it to run the length of the post as indicated by this arrow

Example Pic (http://img26.imageshack.us/img26/4152/userinfo2.jpg)

Nocturnal222
06-21-2012, 03:05 PM
thanks working at vb4 latest version:)

Pure Dope
07-05-2012, 08:25 AM
this is wonderful! but 2 many template mods.

Pure Dope
07-05-2012, 08:26 AM
if you can get the template mods down to 0 and make the background for the entire post for the usergroup, that would be awesome!

Subieforums
10-27-2012, 11:49 AM
This mod looks pretty badarse...

Is there a certain size the background images have to be for this? Just asking before I start adding this code, as I want to make custom graphics for each of the usergroups. Thanks!

Luis
01-10-2013, 11:33 AM
One usergroup is like this:

<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<dl class="userinfo_extra">
</vb:if>

Two usergroups is like this:
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra2">
<vb:else />
<vb:if condition="is_member_of($post, #)"><dl class="userinfo_extra3">
<vb:else />
<dl class="userinfo_extra">
</vb:if>
</vb:if>

You keep adding the statement over and over and then add a vb:if at the end for each additional phrase you add. Then, you must duplicate the css each time for each usergroup. So, in the example for installation, I use userinfo2 for the duplicate css codes. Each additional usergroup will have an incremental increase, so the css for the 2nd usergroup would be userinfo3, the 3rd user group would use userinfo4, and so on. Just keep duplicating each of the steps above for each usergroup.

done xD!

FTG LIQUID CL
01-10-2013, 05:04 PM
Does not seem to work with 4.1.12

Bluefin221
01-18-2013, 04:43 PM
Would love to be able to do something like this on the postbit with badges or something.

neya
02-18-2013, 01:51 PM
Tagged for later installation, thanks a bunch. :)

GameOverViper
03-10-2013, 11:30 PM
Would be awesome if I knew how to get this to work with 4.2.0. I've got some idea's for a forum of mine that this would work great for. I have attempted to get working, but all it did was remove the box keeping the info organized and pushed it up to the username.

I used the image on the OP's site to test it and it doesn't even show up.

SnaKe |WiH|
04-01-2013, 11:34 AM
I like the hanging banners on your demo link! Is that something different than this template mod?

GameOverViper
04-10-2013, 12:15 AM
I like the hanging banners on your demo link! Is that something different than this template mod?

The hanging banners are the backgounds that this mod is suppose to do, but it doesn't work on 4.2.0.

Spangle
05-11-2013, 06:26 PM
The hanging banners are the backgounds that this mod is suppose to do, but it doesn't work on 4.2.0.

I don't think it is, I think it's a way of putting a background image in the post bit, if was the hanging banners ( which I like) I think it would be called "Hanging Banners MOD"