There is an easier way to anomize your urls. Only one file edit, no style edits required.
Open "class_bbcode.php".
Search for
PHP Code:
// standard URL hyperlink
return "<a href=\"$rightlink\" target=\"_blank\"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>";
Replace it with following code:
PHP Code:
// standard URL hyperlink
return "<a href=\"http://anonym.to/$rightlink\" target=\"_blank\"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>";
This will work on all vb editions and all kind of links, incl SSL. You can use an alternating redirector instead of anonym.to, it will work fine also.