Well, I just looked again at your site and it uses a little non-standard code for the title. It is html5, which cool and the title is in <header></header>
<header>
<h1 class="">Glow Morning</h1>
</header>
You'll need to make a template override of
docs.joomla.org/How_to_override_the_outp...rom_the_Joomla!_core
then modify this code:
<?php if (HotspotsHelper::getSettings('show_page_title', 1)) : ?>
<div class="componentheading<?php echo $this->escape(HotspotsHelper::getSettings('pageclass_sfx')); ?>">
<?php echo $this->escape(HotspotsHelper::getSettings('page_title', 'Hotspots')); ?>
</div>
<?php endif; ?>
most probably to
<header>
<h1 class="title"><?php echo $this->escape(HotspotsHelper::getSettings('page_title', 'Hotspots')); ?></h1>
</header>
Regards,
Daniel