The title on all of my pages are H1 tags, except for the homepage and blog page. Google and Bing have complained that the H1 tags are missing on these two pages, respectively. Is there a work around?
Thanks,
—- John
Hey J,
Have you considered adding a h1 special heading element to both pages, a h1 doesn’t necessary have to be at the very top of the page.
Perhaps we can add a h1 tag to the element of your choice on the page with javascript if it has a unique class:
$(document).ready(function() {
$(".unique_class").replaceWith("<h1>new H1 heading</h1>");
});
We would need to see your pages and elements
Best regards,
Mike