Hello Pete,
Thanks for writing in!
To resolve your issue, assuming that the child theme is set up, please add the following code in your child theme’s functions.php file
// Add phone and text next to the logo
// =============================================================================
function add_logo_text_number(){ ?>
<div class="custom-text right pas">
<span class="text">(602) 373 9100</span>
</div>
<?php }
add_action('x_after_view_global__brand', 'add_logo_text_number');
// =============================================================================
We would loved to know if this has work for you. Thank you.