isicmexico
Hi
The page title is H1 by default.
You can try to add Page heading via menu item options and check.
For JA Masthead title
Open \html\mod_jamasthead\default.php
Find
<h3 class="jamasthead-title"><?php echo $masthead['title']; ?></h3>
replace it with
<h1 class="jamasthead-title"><?php echo $masthead['title']; ?></h1>
Now add this code in custom.css
.jamasthead .jamasthead-detail h1 {
display: inline-block;
font-size: 54px;
font-weight: 700;
margin: 0 auto 40px;
max-width: 640px;
-webkit-transition: all 500ms;
-o-transition: all 500ms;
transition: all 500ms;
}
Regards