To remove the h1 tag out of the logo area, please follow the instruction below:
1. Create a new child theme for this customization first. For the detailed steps of how to create a child theme, please see this article: https://uxbarn.ticksy.com/article/8649/
2. Once it's set up and activated, open the "functions.php" file of the child theme then add this code to force disabling the h1 tag in the logo/site title area:
function jeanne_is_site_title_h1_allowed() {
return false;
}
3. Now the tag will completely be removed.
Note that the theme by default displays the h1 tag in the logo/site title area only on the homepage. But you can disable this behavior by using this customization.
I hope it helps. Please let me know if you have any other questions.
function jeanne_is_site_title_h1_allowed() { return false; }