Open index.php and replace this snippet of code in line 83:
<h1 id="logo">
<a class="logoText isFontSans" href="<?php echo $siteurl; ?>" title="<?php echo $logoAltText; ?>">
<?php if($logoImage): ?>
<img src="<?php echo $logoImage; ?>" alt="<?php echo $logoAltText; ?>" />
<span class="hidden"><?php echo $logoText; ?></span>
<?php else: ?>
<span class="slabtext"><?php echo $logoText; ?></span>
<?php endif; ?>
</a>
</h1>
with this:
<?php if($logoImage): ?>
<h1 id="logoImage">
<a class="logoText isFontSans" href="<?php echo $siteurl; ?>" title="<?php echo $logoAltText; ?>">
<img src="<?php echo $logoImage; ?>" alt="<?php echo $logoAltText; ?>" />
<span class="hidden"><?php echo $logoText; ?></span>
</a>
</h1>
<?php else: ?>
<h1 id="logo">
<a class="logoText isFontSans" href="<?php echo $siteurl; ?>" title="<?php echo $logoAltText; ?>">
<span class="slabtext"><?php echo $logoText; ?></span>
</a>
</h1>
<?php endif; ?>
Then open template.css file and in line 369 change h1#logo with h1#logo, h1#logoImage.
We will include this fix in the template's update. Thank you for your feedback.