Hi hotspot,
You could just put the straight html for the logo and link in the header.php and ignore the function to do it via the backend. In your header.php file look for:
<?php
/*
* display the theme logo by checking if the default css defined logo was overwritten in the backend.
* the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
*/
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png');
Replace it with:
/*
* display the theme logo by checking if the default css defined logo was overwritten in the backend.
* the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
*/
#echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png');
<h1 class="logo bg-logo"><a href="http://www.kriesi.at/themes/propulsion/"><img src="http://www.kriesi.at/themes/propulsion/wp-content/themes/propulsion/images/layout/logo.png" alt="" title="Propulsion Theme Demo"></a></h1>
<?php
Then just change the url, title and image source for your site.
Regards,
Devin