Yes, it depends a lot on the them. As xXxpert suggested, explore the editor section of Wordpress, looking for the H1 and H2 within the appropriate php pages. Failing that, some themes actually allow you to change these things via CSS (display: none) and subsequently adding them when and where required in the WYSIWYG editor for the respective page or post. Tom
Surely, I know this very well, but on the home page there is H1 on the Articles and not on the name of the site, what is the solution?
I w Edit the page.php and index.php in your theme. You will find <h1> and <h2> tags you can change them by your need.
then i think your theme would be using another template for the blog page. You can see the template if you edit the blog page. For blog category check category.php, archive.php and for single blogs you have 'single.php'.
No file he's name page-home.php, also in single.php <h1 class="entry-title"><?php the_title(); ?></h1> Code (markup):
You got it. change the h1 tag here to either h2, h3, p or div etc. the_title() gives the title of the page or blog. If you want to change its place cut it and place it in the middle after may be <?php the_content(); ?> etc.
Take a general look: http://photo.elsoar.com/ Note: I would like to change H1 on the homepage only, the name of the site on HomePage.
In your wordpress cms go to 'Settings>Reading' , here you will see 'Front Page Displays' option. This will tell which page is set as front page of your website. Now click 'Pages' in CMS and edit the page. In the description you can add <h1> tag and save it. If you wanna change 'Name of the website so that it changes your HTML Title '. Go 'Appearance >Themes', click on 'Customize' link on the current theme. There you can change the site name and title. Let me know if it solves your problem.
Can you go to CMS of wordpress and edit the home page, copy and paste all the description of home page here so that i can see.