Title differs on mobile: does it matter for SEO?
When your title tag changes between mobile and desktop, mobile-first indexing uses the mobile one. See where they diverge and whether to align them.
What it means
The title tag on the mobile version of a page differs from the desktop version. This usually happens when the title is set via JavaScript after the initial HTML is served, or when the server renders different title values depending on the user-agent header.
Why it matters
Google uses mobile-first indexing, so it indexes and ranks based on the mobile version. If the titles diverge, the mobile title is what gets indexed, while desktop users may see a different one. This can also confuse AI agents that parse titles from the rendered HTML, leading to inconsistent citations and summaries.
How to fix it
- Ensure the title is set in the initial HTML on both mobile and desktop versions, not deferred via JavaScript.
- If using server-side rendering, verify that the title is not dependent on user-agent detection that could produce different values.
- Check that the same
<title>tag appears in the raw HTML on mobile, and that no JavaScript overwrites it after render. - Use the URL Inspection tool to confirm the rendered title matches what you expect.
Example
<!-- desktop -->
<title>Aeron Ergonomic Office Chair | Herman Miller</title>
<!-- mobile (m.example.com) -->
<title>Aeron Chair</title><!-- both desktop and mobile -->
<title>Aeron Ergonomic Office Chair | Herman Miller</title>Under mobile-first indexing Google uses the mobile title. Serve the same, fully descriptive title to both — don't truncate it on mobile.
When it's not a problem
This notice is fine if the titles differ intentionally for layout reasons (for example, a shorter title on mobile to avoid truncation) and the content meaning is preserved. It is also acceptable when the mobile version has less content and a correspondingly shorter title, as long as the primary topic and keywords remain consistent.
How Crawlinx detects it
We fetch the page with a mobile user-agent and compare its <title> to the desktop crawl's title after trimming whitespace. Any difference is reported with both values so you can see which one Google will actually use.
How common is it?
Not yet observed in our audit sample. We publish this explainer because the check runs on every crawl; once an audited site trips it, this page will break the issue down by platform, gatekeeper, vertical and country.
FAQ
- Which title does Google use, mobile or desktop?
- The mobile one. Google indexes the mobile version of your site, so if the mobile title is shorter or different, that's the title considered for ranking and the snippet.
- Is a different mobile title always a problem?
- If mobile is a truncated or weaker version, yes — you're feeding Google the worse title. If they diverge by accident (two templates), align them. Intentional identical titles never trip this.
- Why do my mobile and desktop titles differ?
- Usually a separate m. subdomain or a responsive template with a mobile-only header that overrides <title>. Serve one canonical title from a single source of truth.
Related guides
Audit your own site — free
157 checks, internal PageRank, render-diff. No signup, results in ~30s.