Jerry, while your answer is correct in physical PHP template, it is not correct in a Montezuma virtual template.
If you want to comment something out of the virtual templates surround it with '<!--' and '-->' for example
HTML Code:
<?php get_header(); ?>
would become
HTML Code:
<!--<?php get_header(); ?>-->
this works for the PHP or HTML so to comment out this code
HTML Code:
<div id="content" class="cf col8">
<?php bfa_content_nav( 'multinav1' ); ?>
<?php bfa_loop( 'postformat' ); ?>
<?php bfa_content_nav( 'multinav2' ); ?>
</div>
you could do this
HTML Code:
<!--
<div id="content" class="cf col8">
<?php bfa_content_nav( 'multinav1' ); ?>
<?php bfa_loop( 'postformat' ); ?>
<?php bfa_content_nav( 'multinav2' ); ?>
</div>
-->