Hi,
I took a look at the code in the template override and I see that everything is pretty much hardcoded and the way is written just ignores most of the options and does pretty much whatever it wants to do. So i made these changes in /templates/ja_stark/html/mod_jamasthead/default.html
Lines 99 and 101:
from:
<h3 class="ja-masthead-title"><?php echo $masthead['title']; ?></h3>
<?php if ($masthead['description'] != '') : ?>
<div class="ja-masthead-description"><?php echo $masthead['description']; ?></div>
to:
<h1 class="ja-masthead-title"><?php echo $masthead['title']; ?></h1>
<?php if ($masthead['description'] != '') : ?>
<h2 class="ja-masthead-description"><?php echo $masthead['description']; ?></h2>
And disabled the article title in order not to show it together with the author link. This way I have the h1 and h2, I want by entering them to the title and description of JA Masthead module.