How to fix your title tag for search and AI
You fix a title tag by writing 1 descriptive, specific title per page that says what that page, and only that page, is about. Not a character count. Google's title links documentation is explicit that “there's no limit on how long a <title> element can be” and that truncation in results is a display behavior, done to fit the device width. Write for accuracy. Google rewrites titles it does not trust, so the goal is a title it has no reason to rewrite.
The symptom: your title is missing, generic, or not yours anymore
The title tag failure comes in three grades. The worst is absence: the <title> element is empty or missing, so the browser tab says the URL and the search result says whatever Google could scrape together. The common grade is the generic title: "Home", the bare company name, or the same boilerplate string repeated across every page on the site. And the subtle grade is the one owners notice last: the title showing in Google's results is not the title in your HTML. Google rewrote it.
That last one is not a bug. The documentation says plainly that when Google detects an issue on the page, it may try to generate an improved title link from anchors, on-page text, or other sources. A rewritten title is Google telling you, in public, that your title element failed at its one job. Sometimes the rewrite is fine. Sometimes it is worse than what you would have written. Either way, you handed the headline of your own search result to a machine's best guess.
The cause: templates write titles, nobody reads them
Title tags rot at scale for boring reasons. A CMS ships a default pattern and nobody changes it, so five hundred pages are titled "Products | Acme". A page builder copies a template page, title included, and the duplicate never gets edited. A homepage keeps the "Welcome" title it launched with in 2019. Or an SEO from a past era stuffed the tag with every keyword variant, comma-separated, and it has been repelling clicks ever since.
The doc names both failure patterns directly. On stuffing: it is sometimes helpful to have a few descriptive terms in the title, but there is no reason to have the same words or phrases appear multiple times. On boilerplate: it is important to have distinct text that describes the content of each page. Repeated titles do a specific kind of damage, because the title is the strongest single line of evidence about what a page is. When fifty pages present identical evidence, a machine cannot tell them apart, and neither can a person scanning results.
The fix: one specific title per page, brand at the end
Write each title as a plain statement of what the page is about, specific enough that it could not be swapped onto any other page of your site. Match it to the actual content. A title that promises what the page does not deliver is the fastest route to a rewrite. Keep the brand, but keep it as a short suffix, not the substance.
<!-- Before: generic, duplicated, stuffed --> <title>Home</title> <title>Acme | Roofing, Roof Repair, Roofers, Best Roofing Austin TX</title> <!-- After: specific, one per page, concise brand suffix --> <title>Metal roof repair in Austin · Acme Roofing</title> <title>What a roof inspection covers and costs · Acme Roofing</title>
One rule the doc states that most advice skips: one title element per page. Duplicate <title> tags in the head, usually injected by a plugin on top of the theme's own, force Google to pick one, and you do not control which. While you are in the head, make sure the title and the H1 agree with each other. They do not need to be identical, but a title and a main heading that describe two different pages is exactly the kind of contradiction that triggers a rewrite, since headings on the page are one of the sources Google draws from when it builds a title link.
This matters past the blue links. AI answer engines use the title as a cheap, high-confidence summary of the page when deciding what to retrieve and what to cite. A title that names the specific question you answer is retrievable. "Home" is not. Our guide on answer engine optimization covers how the rest of the page carries that promise through.
Be honest: there is no character limit, and never was
The "keep titles to 50-60 characters" rule is folklore, and we will not repeat it. There is no official character limit. What actually happens is that Google's results page has finite space, so long title links get visually cut off, “truncated in Google Search results as needed, typically to fit the device width”, as the doc puts it. That is pixels on a screen, not a ranking rule. A title that runs long is not penalized for running long. The words past the cut are still read, still indexed, still used. Write the title the page needs. If the most important words come first, truncation costs you almost nothing. Any tool that scores your title red for being 63 characters is measuring a rule that does not exist.
Verify: check the tag, then check the result
View source and confirm exactly one <title> element, with text specific to that page. Spot-check your major page types, because template problems repeat across the template. Then search for a few of your pages by name and compare the title link Google displays against the title you wrote. A match means Google trusts your title. A rewrite means one of the failure patterns above is still live.
Then run the check the way we would. Paste the URL into the Brimm audit and we will read the title the way a crawler does, flag duplicates and boilerplate across pages, and show you what a machine thinks each page is about. The meta description guide covers the line below the title, and the rest of the fix library covers everything after that.