Hmm. Well, I guess I cannot do it just by changing postdetails and userinfo classes. THere's other parts of the postbit that determine their width by postbitlegacy_userinfo_width's value. I'd -have- to either change the value in
$stylevar['postbitlegacy_userinfo_width'] before postbit.css is called but after any final changes to $stylevar occur, or I would have to make a bunch of new styles. :< I'd much rather find a hook to change the $stylevar value.
@Lynne, naw, it's something I want to apply to all of my existing styles.
See, I keep a "Master" template as a parent of all my styles and make modifications to the templates in that one (specifically here, the postbit_legacy template) and let the rest of my styles inherit the changes. I -could- find all the classes affected by postbitlegacy_userinfo_width's value and change them accordingly, but it would be a pain if I could just do it by being able to globally change $stylevar['postbitlegacy_userinfo_width'] before postbit.css is processed.
--------------- Added [DATE]1265413944[/DATE] at [TIME]1265413944[/TIME] ---------------
Well, let's see.
PHP Code:
global $vbulletin;
if ($vbulletin->userinfo['userid'] == 15010)
{
$vbulletin->stylevars['postbitlegacy_userinfo_width']['size'] = '350';
}
I have that as a plugin, which is what I need to change... But, erm, I just don't knwo WHERE to place it. (Like what hook.)