@RueNel
Thanks for the reply, I understand what you’ve said, I’d like to know which PHP file I need to edit to achieve my desired results, IE. the file that has the logo code in it?
I have implemented exactly the same in other themes by adding into the respective PHP file (logo.php for example in one other theme)…
Here is an example of how I implemented it in another themes code, “Startit” WordPress theme:
<?php do_action('qode_startit_before_site_logo'); ?>
<div class="qodef-logo-wrapper">
<a href="<?php echo esc_url(home_url('/')); ?>" <?php qode_startit_inline_style($logo_styles); ?>>
<img class="qodef-normal-logo" src="<?php echo esc_url($logo_image); ?>" alt="<?php echo wp_title(); ?>"/>
<?php if(!empty($logo_image_dark)){ ?><img class="qodef-dark-logo" src="<?php echo esc_url($logo_image_dark); ?>" alt="<?php echo the_title(); ?> Contractors"/><?php } ?>
<?php if(!empty($logo_image_light)){ ?><img class="qodef-light-logo" src="<?php echo esc_url($logo_image_light); ?>" alt="<?php echo the_title(); ?> North West UK"/><?php } ?>
</a>
</div>
<?php do_action('qode_startit_after_site_logo'); ?>
Can you let me know the Pro, using Ethos, file where I can do similar in please?
Also if possible the altered code I will need to change to make the same effect as in referenced Startit theme code above, I’m not a professional coder, so any help would be much appreciated!
In the above example obviously I’ve simply added alt="<?php echo the_title(); ?> North West UK"/> into the logo display code.
Really hope yourself or someone else can please help 
Many thanks.