Is there a mod or a method for making titles of nodes as h1 tags?

Bejii

Comments

tdimg’s picture

just amend your theme's template files accordingly: page.tpl.php and node.tpl.php (and others based off on those depending on your theme, page-xxx.tpl.php/node-xxx.tpl.php)

bejii’s picture

		  </div>
          <?php if ($title) { ?>
		    <div class="node-title">
			  <?php print $title ?>
			</div>

what would be the proper way of adding h1 in the title there...

edit: nvm got it

for anyone who would like to know:

          <?php if ($title) { ?>
		    <div class="node-title">
			  <h1 class="h1title"><?php print $title ?></h1>
			</div>

css for h1title