Skip to content
Browse all guides

Issue #303 · IMPORTANT

Issue 303

What is this issue?

This issue checks whether the page's meta description is between 150 and 160 characters long.

A search result gives the description roughly two lines — about that much text. Below 150 the space is left empty, and Google is markedly more likely to discard a thin description and generate its own snippet from the page body instead. Above 160 it is truncated with an ellipsis, and anything after the cut is never read.

Both directions are the same issue. A page can only ever be one of them, and the report tells you which and by how much.

For this check to pass:

  • A meta description must be present (that is issue #301)
  • It must be between 150 and 160 characters

This check is only about length. Duplicate descriptions across pages are issue #40.

Example: Wireless headphones. is 20 characters and fails as too short. A 240-character description ending with ...and free returns within 60 days fails as too long — and the returns policy, the reason to click, never appears.

Why does it matter?

A description outside the recommended length affects:

  • Click-through rate: A one-line description is easy to skip past; the competing result that uses both lines gets the click. An over-long one loses its tail, and writers naturally build to the call to action, so the tail is the strongest part.
  • Message control: Google discards descriptions it judges unhelpful — too thin, or not fitting — and writes a snippet from the page body instead. Either way you lose the ability to control your own listing.
  • Query coverage: Google bolds terms from the search query where they appear in the snippet. Too little relevant text means fewer visible matches; padding means the real content is buried.
  • User experience: A sentence cut mid-clause reads as careless and tells the reader nothing useful.
  • AI Search / AEO: Answer engines often reuse the description as the summary shown beside a citation, and neither a fragment nor a truncated paragraph makes a good one.

Fixing this improves your SEO health score by making full use of the largest piece of copy you control in the search results page.

How to fix it

The report tells you which direction the description is out by and how many characters.

If the description is too short

  1. Write two full sentences. The first says what the page offers; the second gives the reason to choose it — a differentiator, a guarantee, or a specific detail.
  2. Add concrete specifics. Numbers, timeframes and terms both fill space and persuade: 30-hour battery, free returns within 60 days, over 400 reviews.
  3. Include the phrasing people search for, so the snippet visibly matches the query.
  4. Do not pad. Repeating the product name to reach a count produces a description Google will replace anyway.

If the description is too long

  1. Front-load the call to action. Whatever must survive truncation goes in the first 150 characters. This alone fixes the practical damage.
  2. Cut the opening throat-clearing. A 70-character preamble about the company's history says nothing about this page.
  3. Remove the brand boilerplate. A tagline repeated on every page is the first thing to delete; the brand already appears in the title and the URL.
  4. Keep one idea per sentence and drop the third. Two are enough for 160 characters.

Either way

  • Fix the template. Length problems are usually systemic — often a template emitting a truncated product summary, or inserting the whole opening paragraph of the body. Truncate at a word boundary in the template, or author a dedicated description field.

Examples

1. Too short — fragment instead of a description

Problem — 20 characters, 130 below the minimum:

<meta name="description" content="Wireless headphones." />

Fixed — 151 characters:

<meta
  name="description"
  content="Compare our wireless noise-cancelling headphones — 30-hour battery, adaptive ANC, and free returns within 60 days. Free next-day delivery on all orders."
/>

2. Too long — body paragraph used as the description

Problem — 271 characters, 111 above the maximum. Everything from Each pair onward is cut:

<meta
  name="description"
  content="Welcome to Acme Audio, where we have been building professional sound equipment since 1994. Our wireless noise-cancelling headphones are designed for studio engineers and serious listeners alike. Each pair ships free and is covered by a 60-day return window."
/>

Fixed — 158 characters, with the returns policy safely inside the limit:

<meta
  name="description"
  content="Wireless noise-cancelling headphones built for studio engineers — 40mm drivers, 30-hour battery. Free next-day delivery and 60-day returns on every order."
/>

3. Too long — call to action lost to truncation

Problem — 214 characters. The discount code, the entire point, never appears:

<meta
  name="description"
  content="Our wireless noise-cancelling headphones combine adaptive ANC with a 30-hour battery and a lightweight over-ear design suitable for long sessions. Use code STUDIO20 at checkout for 20% off your first order."
/>

Fixed — 156 characters, code moved to the front:

<meta
  name="description"
  content="20% off your first order with code STUDIO20. Wireless noise-cancelling headphones with adaptive ANC, a 30-hour battery and a lightweight design."
/>

How PixyScan detects this

  1. Fetches the raw HTML and parses the <head>.

  2. Reads the description text from the meta element's content. If there is no description at all, nothing is reported here — that is issue #301.

  3. Counts the characters.

  4. Decides. The issue is raised when the count falls below 150 or above 160. The finding records the actual length, which bound was crossed, and the difference in characters — so the report states the current length, whether it is too short or too long, and the required range, rather than a generic warning.

Because a description cannot be both too short and too long, this is a single issue rather than two. Only one direction is ever reported for a given page.

References