Alternatively, a more future-proof way is to use the following in your functions.php:
add_filter( 'tc_colophon_left_block_class', 'my_colophon_left_block_class' );
function my_colophon_left_block_class() {
return 'span2 social-block pull-left';
}
add_filter( 'tc_colophon_center_block_class', 'my_colophon_center_block_class' );
function my_colophon_center_block_class() {
return 'span8 credits';
}
add_filter( 'tc_colophon_right_block_class', 'my_colophon_right_block_class' );
function my_colophon_right_block_class() {
return 'span2 backtop';
}
If the middle section doesn’t resize correctly, check you aren’t also modifying the span in any code that you may have already implemented to change the credits.