Thanks to both of you- i made an edit to the functions.php and it cleared up the issue right away. Looks like I had an extra line break in there.
I made an edit to that document yesterday as well. see below:
<?php
add_filter(‘tc_credits_display’, ‘my_custom_credits’);
function my_custom_credits(){
echo ‘<div class=”span4 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · Developed by Keating Physical Therapy·</p></div>’;
}
?>