In xenforo.js around line 7355, there is the function to update the page title h1 with the content you are typing while creating a thread title.
Specifically:
And I found this to not work very well with my site, as my logo is an <h1>. I have a fixed navigation and I need the header to be moved back to the top, thus making this cause the issue. To fix my issue, I've simply changed MY code to be an <h2> which isn't ideal for search engines. The fix I think would work is to make the $title object something more specific:
Thanks!
Mike
Specifically:
Code:
if (!$title.length)
{
$title = $('h1').first();
}
And I found this to not work very well with my site, as my logo is an <h1>. I have a fixed navigation and I need the header to be moved back to the top, thus making this cause the issue. To fix my issue, I've simply changed MY code to be an <h2> which isn't ideal for search engines. The fix I think would work is to make the $title object something more specific:
Code:
$title = $('.pageTitle h1');
Thanks!
Mike