vBulletin Options -> Thread Display Options (showthread) -> Use Legacy (Vertical) Postbit Template
Announcement
Collapse
No announcement yet.
How to make the postbit layout an user option
Collapse
X
-
-
Originally posted by MadMikeyThis is sweet, I was looking for something just like this, but I'm having a CSS problem with it.
When I move the userinfo to the left, I lose the black lines that are around the posts. See the attached screenshots:To alcohol! The cause of, and solution to, all of life's problems. -- Homer Simpson
Comment
-
Originally posted by ckaModify postbit_legacy, set the table so that cellspacing is 1 and not 0.
That did it!Mikey
www.GamingAsylum.net
Comment
-
Originally posted by UnrealAntActually, that's a good point, but it does render the Admin CP option useless.... Theoretically you can do the same with pretty much every option in the CP. My next aim will be to do the same with the Quick reply box, I'm just hoping the CP setting does not overide it because it's not possible to leave the option blank in the CP you have to set yes or no as opposed to the postbit which is either selected or nothing.
Frugal
Comment
-
didn't know that, thanks!
Originally posted by FreddieYes you could do the same thing with any option in the admin cp.Carlos
http://www.northbits.com
Comment
-
That was almost too easy. I copied and pasted it into my first style, took the extra 6 off and tested it out and it worked flawlessly. Pasted into all of my other styles and it didn't work. Well, forget to get rid of that extra 6.Works great.
Thanks!
Comment
-
Is it possible to incorprate vbulletins liquid style into this sort of option, instead of having to set up a child style for those threes stylevars?Check out http://www.alotoftalk.com/ my new vB3.5 forum =)
Comment
-
PHP Code:if ($bbuserinfo['field6'] == 'Expanded')
{
$stylevar['outertablewidth'] = "100%";
$stylevar['outerdivwidth'] = "100%";
$stylevar['formwidth'] = "auto";
$stylevar['formwidth_usercp'] = "auto";
}
else
{
$stylevar['outertablewidth'] = "760";
$stylevar['outerdivwidth'] = "760px";
$stylevar['formwidth'] = "640px";
$stylevar['formwidth_usercp'] = "480px";
}
BTW I used the same drop-down box as before only with 'Expanded' and 'Fixed' as options.
EDIT: Has anyone fixed the alignment of the option boxes in the cp yet?Check out http://www.alotoftalk.com/ my new vB3.5 forum =)
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment