Quote:
Originally Posted by yinyang
can you add the ability to choose or specify the width %age?
|
mmmm..
untested, but you could change the profile field to a single line text box and then change the plugin to:
Code:
if ($vbulletin->userinfo['field5'] != '')
{
$stylevar['outerdivwidth'] = $vbulletin->userinfo['field5'];
$stylevar['outertablewidth'] = $vbulletin->userinfo['field5'];
}
you'd need to pointout to users that the value should either be
*px or
*% (they'll need to add the px or % themselves)
or you can force then to either using:
Code:
if ($vbulletin->userinfo['field5'] != '')
{
$stylevar['outerdivwidth'] = $vbulletin->userinfo['field5'].'px';
$stylevar['outertablewidth'] = $vbulletin->userinfo['field5'].'px';
}
for px or:
Code:
if ($vbulletin->userinfo['field5'] != '')
{
$stylevar['outerdivwidth'] = $vbulletin->userinfo['field5'].'%';
$stylevar['outertablewidth'] = $vbulletin->userinfo['field5'].'%';
}
for %