bloch
Hi
Assume the question is for the Articles category module on Homepage.
Open file "/html/mod_articles_category/triangle.php" in template "ja_decor".
Find
<h3 class="category-title">
<?php
$cat_title = $jacategory->title;
$cat_titles = explode(" ",$cat_title);
echo '<span class="first-letter">'.$cat_titles[0].'</span>';
unset($cat_titles[0]);
echo ' '.implode(" ",$cat_titles);
?>
</h3>
Change H3 with h1
For custom html module you can find the option in advance tab : http://prntscr.com/om8yor
And set the header tag as per needs.