No love! The content isnt in the parent themes either. This is what the header.php looks like.
<body id=”<?php print get_stylesheet(); ?>” <?php body_class(); ?>>
<?php do_action( ‘body_top’ ); ?>
<!–skip to content link–>
<?php _e(‘Skip to content’, ‘chosen’); ?>
<div id=”overflow-container” class=”overflow-container”>
<div id=”max-width” class=”max-width”>
<?php do_action( ‘before_header’ ); ?>
<header class=”site-header” id=”site-header” role=”banner”>
<div id=”menu-primary-container” class=”menu-primary-container”>
<?php get_template_part( ‘menu’, ‘primary’ ); ?>
<?php ct_chosen_social_icons_output(‘header’); ?>
</div>
<button id=”toggle-navigation” class=”toggle-navigation” name=”toggle-navigation” aria-expanded=”false”>
<span class=”screen-reader-text”><?php _e(‘open menu’, ‘chosen’); ?></span>
<?php echo ct_chosen_svg_output( ‘toggle-navigation’ ); ?>
</button>
<div id=”title-container” class=”title-container”>
<?php get_template_part(‘logo’) ?>
<?php if ( get_bloginfo( ‘description’ ) ) {
echo ‘<p class=”tagline”>’ . get_bloginfo( ‘description’ ) .'</p>’;
} ?>
</div>
</header>
<?php do_action( ‘after_header’ ); ?>
<section id=”main” class=”main” role=”main”>
<?php do_action( ‘main_top’ ); ?>
Im assuming this is the line I wold have seen the tagline content in?
echo ‘<p class=”tagline”>’ . get_bloginfo( ‘description’ ) .'</p>’;
Unless the content is in another file? I dont see anything else it would be in though.