Course → Module 7: Technical SEO Baseline
Session 4 of 7

Since 2019, Google has used mobile-first indexing for all new websites, and as of 2023, all websites are indexed mobile-first. This means Google primarily uses the mobile version of your page for indexing and ranking. The desktop version is secondary.

For entity authority, this has a direct implication: if your entity signals (schema markup, entity descriptions, NAP information, internal links) are present on desktop but missing on mobile, Google may never see them. Your mobile experience is your experience in Google's eyes.

What Mobile-First Indexing Means

graph TD A["Your Website"] --> B["Desktop Version"] A --> C["Mobile Version"] B --> B1["Googlebot Desktop
(Secondary Crawl)"] C --> C1["Googlebot Smartphone
(Primary Crawl)"] C1 --> D["Google's Index
(Based on Mobile Content)"] B1 --> E["Used for
Desktop-Specific Signals Only"] D --> F["Rankings for
All Devices"] style C fill:#222221,stroke:#c8a882,color:#ede9e3 style C1 fill:#222221,stroke:#c8a882,color:#ede9e3 style D fill:#222221,stroke:#6b8f71,color:#ede9e3 style B fill:#222221,stroke:#8a8478,color:#ede9e3

Googlebot Smartphone is the primary crawler. It is the one that reads your content, processes your schema markup, follows your internal links, and evaluates your Core Web Vitals. Googlebot Desktop still crawls occasionally but is not the primary source for your index entry.

Key concept: Mobile-first indexing means the mobile version of your page IS your page in Google's index. If content or markup exists only on the desktop version, Google treats it as if it does not exist.

Common Mobile Problems That Hurt Entity Signals

Many websites inadvertently hide or degrade entity signals on mobile. Here are the most common problems.

ProblemHow It HappensEntity ImpactFix
Content hidden on mobileCSS display:none or tabs/accordions that hide content by default on small screensHigh. Google deprioritizes content that is hidden on mobile.Make all entity-critical content visible by default on mobile. No hidden tabs for entity info.
Schema markup missing on mobileSeparate mobile site (m.example.com) does not include the same JSON-LD as desktopSevere. Entity signals completely absent from indexed version.Ensure identical schema markup on both versions. Better: use responsive design.
Different content on mobile vs. desktopMobile site shows abbreviated content or different textHigh. Google indexes the mobile text, which may lack entity descriptions.Serve the same content on both versions. Responsive design solves this by default.
Missing internal links on mobileMobile navigation is simplified, removing links to entity pagesMedium. Reduced internal linking weakens entity page authority.Ensure mobile navigation includes links to all entity-critical pages.
Images missing on mobileMobile version removes images to save bandwidthMedium. Entity-associated images not indexed.Use responsive images (srcset) instead of removing images entirely.
Intrusive interstitialsFull-screen popups on mobile that block contentMedium. Google penalizes intrusive interstitials.Use small banners instead. Never block the main content.
Unreadable textText too small to read without zooming on mobileLow for entity signals, high for user experience.Use a minimum font size of 16px for body text. Set proper viewport meta tag.
Tap targets too smallButtons and links too close together or too small to tap accuratelyLow for entity signals, high for user experience.Minimum 48x48px tap targets with 8px spacing between them.

The Mobile Audit Checklist

Use this checklist to verify your entity pages are fully optimized for mobile-first indexing.

Audit ItemWhat to CheckHow to CheckPass/Fail
Responsive designSite uses responsive layout, not a separate mobile siteResize browser window. Or check for m.example.com redirects.
Viewport meta tag<meta name="viewport" content="width=device-width, initial-scale=1"> is presentView page source
Same content on mobileAll text, headings, and entity descriptions visible on mobileCompare mobile and desktop in Chrome DevTools
Schema markup paritySame JSON-LD appears in mobile HTML as desktop HTMLURL Inspection Tool in GSC (shows mobile render)
Internal links preservedMobile navigation includes links to About, Contact, ServicesTest mobile navigation manually
Images visible on mobileLogo, headshot, branded images load on mobileBrowse entity pages on a real phone
No intrusive interstitialsNo full-screen popups that block content on mobileBrowse site on mobile immediately after load
Text readabilityBody text at least 16px, no horizontal scrollMobile device test or Chrome DevTools mobile emulation
Tap target sizingAll links and buttons at least 48x48pxLighthouse mobile audit
Page speed on mobileLCP under 2.5s on mobile connectionPageSpeed Insights (mobile tab)

Testing With Google's Tools

Google provides several tools specifically for mobile testing:

Approximately 60% of global web traffic comes from mobile devices. Yet only about 52% of websites are fully optimized for mobile. Even more concerning, only 44% of websites maintain schema markup parity between mobile and desktop. That means over half of all websites are potentially sending weaker entity signals to Google than they intend.

Chrome DevTools Device Mode: Press F12 in Chrome, click the device toggle icon, and select a mobile device. This simulates the mobile viewport and lets you see what Googlebot Smartphone sees.

URL Inspection Tool: In Google Search Console, the URL Inspection Tool shows you the rendered page as Googlebot sees it. Since Googlebot is mobile-first, this shows the mobile render.

PageSpeed Insights: Always check the "Mobile" tab in PageSpeed Insights. The mobile scores are what Google uses for ranking.

Responsive Design vs. Separate Mobile Site

If you are still running a separate mobile site (m.example.com), consider migrating to responsive design. Responsive design serves the same HTML to all devices and uses CSS media queries to adapt the layout. This automatically ensures content parity, schema parity, and link parity between mobile and desktop.

Separate mobile sites require maintaining two versions of every page, which is where content and markup discrepancies typically appear. Google recommends responsive design as the preferred approach.

Further Reading

Assignment

  1. Open your homepage in Chrome DevTools Device Mode (F12, click device toggle). Compare the visible content to the desktop version. Is any entity-critical content hidden, collapsed, or missing?
  2. View the source of your homepage on mobile (or use URL Inspection Tool in GSC). Verify that your Organization/Person schema markup is present and identical to the desktop version.
  3. Test your mobile navigation. Can you reach your About page, Contact page, and Service pages from the mobile menu? If any are missing, add them.
  4. Run PageSpeed Insights on your homepage using the Mobile tab. Record the LCP, INP, and CLS scores for mobile specifically.
  5. Complete the Mobile Audit Checklist above for your homepage, About page, and Contact page. Fix any failures you discover.