Integrity (not pro) need phone number next to logo

I have a working child theme - no issues there…

…but for the life of me I can’t find the file I need to edit to customize my header.

I simply need to add a phone number on the right half of .x-logobar
(this is what I need to do: https://i.imgur.com/liLRKfU.png)

please advise how to do this.

thanks.

Pete

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.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.