Hi larry
Create child theme using child theme creator plugin
After that create banner-header-archive.php and archive.php file in child theme.
Open the both file and copy paste one by one file code.
Remove some line of code form banner-header-archive.php and add your hard-coded title text and description .
For Example :
<h2 class=”about_head pull-left”><?php the_title(); ?><span><?php bloginfo(‘description’);?></span></h2>
To
<h2 class=”about_head pull-left”>Your Archive Title Text <span>Your Archive Title Description </span></h2>
Save it.
After that open child theme archive.php file and link your banner-header-archive.php file like this type:
get_template_part(‘banner’,’header’);
To
get_template_part(‘banner’,’header-archive’);
Save it.
It will resolved your issue.
Thanks