When you have a multiple selection field (like checkboxes), the value is stored as a number where each bit represents one of the options. So unfortunately that makes it a little more complicated to display. You need to do something like:
Code:
<!-- Sports -->
<vb:if condition="$post['field8']">
<dt>sports</dt>
<vb:if condition="$post['field8'] & 1"><dd>Football</dd></vb:if>
<vb:if condition="$post['field8'] & 2"><dd>Soccer</dd></vb:if>
</vb:if>
<!-- Sports -->
Each value is 2 times the previous value, so if you have more than 2 choices the next values would be 4, 8, 16, 32, 64, etc.