I believe you mean the custom field there is missing the style. if this is what you are after, then make sure what postbit_legacy class is used for the common fields.
if you provide a link to your site, I may help you with that.
if not, then use Chrome inspection element to see what
class you need to add to your custom field and add a
div to that class i.e:
PHP Code:
<!-- My Team in postbit_legacy Start -->
<vb:if condition="$post['field5']"><div class="your_common_style_name"><dt>{vb:rawphrase my_team}</dt> <dd><img src="{vb:stylevar imgdir_misc}/{vb:raw post.field5}.gif" alt="{vb:raw post.field5}" /></dd></div></vb:if>
<!-- My Team in postbit_legacy End -->
Good luck