Hi @lancesalyers,
Thanks for writing in.
You mean as a banner instead of header? You could do that as hooks, please check this thread https://theme.co/apex/forum/t/text-on-top-of-categorys-archive/33877/14
Instead of like this,
if ( is_category() || x_is_portfolio_category() || x_is_product_category() ) : ?>
You can have it like,
if ( is_category( 763 ) ) : ?>
Where the 763 is the category ID where you wish to display it, here are another sample
if ( is_category( 763) ) : ?>
<?php
$meta = x_get_taxonomy_meta();
$title = ( $meta['archive-title'] != '' ) ? $meta['archive-title'] : __( 'Category Archive', '__x__' );
?>
<header class="x-header-landmark x-container max width">
<h1 class="h-landmark"><span><?php echo $title; ?></span></h1>
<p class="p-landmark-sub"><span><?php echo category_description(); ?></span></p>
</header>
<?php endif;
if ( is_category( 764) ) : ?>
<?php
$meta = x_get_taxonomy_meta();
$title = ( $meta['archive-title'] != '' ) ? $meta['archive-title'] : __( 'Category Archive', '__x__' );
?>
<header class="x-header-landmark x-container max width">
<h1 class="h-landmark"><span><?php echo $title; ?></span></h1>
<p class="p-landmark-sub"><span><?php echo category_description(); ?></span></p>
</header>
<?php endif;
Where you display different header/banner for each category page that matches the ID.
Thanks!