u just want to make the sizes of the text bigger right? not sure what u meant with the whole compatibility with the posts in phpbb cause i had a friend use the converter to convert ipb to phpbb and they didnt lose any post of theirs so kinda lost with what u meant
anyway as for increasing the sizes u need to edit the defaults.php file located in admin/sources/classes/text/parser/bbcode in there u will find the php file
afterwards u look for this code
class bbcode_plugin_size extends bbcode_parent_main_class
{
/**
* Mapped font sizes
*
* @access protected
* @var array
*/
protected $font_sizes = array( 1 => 8,
2 => 10,
3 => 12,
4 => 14,
5 => 18,
6 => 24,
7 => 36,
8 => 48 );
and u can continue with the following like adding on like
8 => 48,
9 => 72 );
and so forth to make the text sizes bigger, hope this is what u wanted