Add a logo above the Theme Text

I am using Travelify (I love it) - however I want to add my logo above the theme Header text. I want a logo AND the header text.

Is there a way I can do this?

www.funfamily.vacations

Thanks again

Allison

This can’t be done via Theme Options or WordPress dashboard but it is not that hard to implement by doing a small code tweak.

Go to file called header-extensions.php that you can find in travelify folder >> library >> structure.

And add this line of code:

<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>

right after this part of the code:

<h1 id="site-title">
	<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
		<img src="<?php echo $options[ 'header_logo' ]; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
	</a>
</h1>

Let me know if this helps.