yeah, problem with that is if the user is allowed to edit the post, they will see all the custom bbcode tags like I put in a noparse bbcode, makes it a mess.
Only workaround I found at the moment is hard-coding the class_bbcode.php, near the bottom is all of vbulletins $tag_list items. I was too lazy to read through all of the code to create a custom value option one, so made 3 tags at 9, 20, and 50 pixels. Heres the code in case anyone else had that issue:
PHP Code:
// [SPACE20]
$tag_list['no_option']['space20'] = array(
'html' => '<span style="margin-left:20px;">%1$s</span>',
'strip_empty' => true,
'strip_space_after' => 1
);
The codes that allowed a {option} parameter had different code, but im sure anyone who reads through the code can figure it out