// Add category title and description to the Video Category taxonomy archives
add_action( 'genesis_before_content_sidebar_wrap', 'jivedig_video_cats_archive' );
function jivedig_video_cats_archive() {
echo '<div class="tax-title">';
echo '<p>All Videos Filed Under:</p>';
echo '<h2 class="archive-title">';
echo single_cat_title();
echo '</h2>';
echo '</div>';
}