I have a new problem with H1 and H2 tags.
In my them, there is a file called header.php that put the name of the blog like a H1 in home, in single, in pages etc..
<body <?php body_class(); ?>>
<div id="page-head"><?php do_action('easel-page-head'); ?></div>
<div id="page-wrap">
<div id="page">
<?php easel_get_sidebar('above-header'); ?>
<div id="header">
<div class="header-info">
<strong> <h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name') ?></a></h1>
<div class="description">"<?php bloginfo('description') ?></div></strong>
</div>?>
I don’t want, I only want H1 for the home page, not for the rest of the pages.
Can you help me , please?