[ad_1]
Hi guys!
​
Do you know a way how to make the blog post title (which originally H3) as H1?
​
I’m using the blocksy theme and i coudn’t found a way. Using elementor too and thinking about to just turn off the title and put a heading part at the top with H1. But i have a ton of posts and this method would eat a lot of time.
[ad_2]
By deafault title is H1, in your case you can modify through css. Add coustom css in single. php If you need help I can do..
Thanks
Mine is in title.php, in my theme files. This will depend on your theme.
1. Appearance > Theme File Editor > Theme Files > title.php
2. Mine looks like this:
​
} elseif ( is_archive() || is_home() ) {
the_archive_title( ‘<h1 class=”page-title archive-title”>’, ‘</h1>’ );
}
In your case, you would change h2 to h1.