Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #985583

    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

    • This topic was modified 5 years, 9 months ago by envatojlc.
    #985793

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.