Mobile-First Indexing Audit: Is Your Kerala Website Ready?

Google has ranked all websites based on their mobile version since 2023 — yet hundreds of Kerala business sites built before 2022 still have desktop-first architectures that hide content, slow down on mobile networks, and silently suppress rankings. This 15-point audit tells you exactly what to check and fix.

ഗൂഗിൾ 2023 മുതൽ എല്ലാ വെബ്സൈറ്റുകളും mobile version അടിസ്ഥാനമാക്കി rank ചെയ്യുന്നു. 2022-നു മുമ്പ് നിർമ്മിച്ച Kerala വെബ്സൈറ്റുകളിൽ പലതും ഈ 15-point audit-ൽ fail ആകും — content hide ചെയ്യൽ, slow loading, tap target failures എന്നിവ rankings നശിപ്പിക്കുന്നു.

Why Mobile-First Indexing Still Catches Kerala Sites Off Guard

Google announced mobile-first indexing as a concept in 2016. By July 2019, it applied to all new websites. By March 2021, Google was migrating older sites. By 2023, all sites on Google's index were operating under mobile-first indexing — meaning Google uses what its Googlebot Smartphone crawler sees as the primary basis for ranking, regardless of whether your actual visitor uses a phone or desktop.

Despite this multi-year rollout, I routinely audit Kerala business websites — particularly those built between 2015 and 2022 — and find fundamental mobile-first failures. These sites were designed on desktop, tested on desktop, and optimized for desktop visitors. Their mobile experience was an afterthought, and Google has been quietly penalizing them for it.

The 15-point audit below covers every area Google's mobile crawler evaluates. Work through each item systematically, document pass/fail status, and prioritize fixes by ranking impact.

The 15-Point Mobile-First Indexing Audit

Point 1: Viewport Meta Tag

Check: View the page source and confirm the <head> contains <meta name="viewport" content="width=device-width, initial-scale=1.0">. Without this tag, mobile browsers render pages at desktop width and scale them down — making text unreadable and triggering Google's "viewport not configured" error in the Mobile Usability report. This is the single most common issue in Kerala websites built before 2019.

Point 2: Text Readable Without Pinch-Zoom

Check: Body text must be a minimum of 16px on mobile. Smaller text triggers a "text too small to read" failure in Search Console's Mobile Usability report. Many Kerala sites set base font size at 12px or 14px — fine on desktop but unreadable on a 360px screen. Verify in Chrome DevTools by toggling the mobile viewport emulator.

Point 3: Tap Targets at Least 48×48px

Check: All interactive elements — navigation links, CTA buttons, phone number links, WhatsApp buttons, form submit buttons — must be at least 48×48 pixels. Google's guidelines specify a minimum of 8px spacing between adjacent tap targets. Use Lighthouse (in Chrome DevTools, Audits tab) to automatically flag undersized tap targets. This affects Kerala hospitality and restaurant sites most frequently, where dense navigation menus compact links into small areas.

Point 4: No Horizontal Scrolling at 360px Width

Check: In Chrome DevTools, switch to the responsive design mode and set the viewport width to 360px (the most common Android screen width in India). Scroll horizontally — if the page has overflow, trace it to the element causing it. Common culprits: tables without overflow-x: auto, fixed-width images, hardcoded pixel widths in CSS, and iframe embeds (particularly Google Maps) without responsive wrappers.

Point 5: Images Scale Within Viewport

Check: All images should have max-width: 100% in CSS so they do not overflow their containers on narrow screens. Additionally, serve appropriately sized images — a 2400px hero image served to a 375px screen wastes bandwidth and directly increases LCP time on mobile. Use the srcset attribute or a responsive image CDN to serve appropriate sizes per breakpoint.

Point 6: Equivalent Content on Mobile and Desktop

Check: This is the most SEO-damaging failure pattern. Content hidden on mobile using display:none or visibility:hidden via CSS media queries is not indexed by Google's mobile crawler. If your desktop version shows a 600-word product description that collapses to a 50-word summary on mobile via CSS hiding, Google only indexes the 50-word version. Audit every section that behaves differently on mobile — expandable tabs, accordion sections, "Read More" toggles — and verify the underlying content is still present in the DOM (not rendered by JavaScript after interaction).

Point 7: Structured Data Identical on Mobile

Check: If your JSON-LD schema markup is injected via JavaScript that only fires on desktop, or if your mobile template uses a different set of templates than desktop, the schema Google sees may differ from what you intend. Use Search Console's URL Inspection tool with the mobile user agent to verify structured data is present and valid on the mobile-rendered version. Compare the rich results detected by the URL Inspection tool against what you see in the Rich Results Test with mobile user agent selected.

Point 8: hreflang Tags Present on Mobile Version

Check: If your site serves Malayalam or other language variants (ml, en-IN, etc.) via hreflang, the hreflang annotations must be present on both the mobile and desktop versions of each page. A common failure: hreflang is added to a desktop template but not the mobile-specific template used for a separate m.domain.com subdomain. This causes Google's mobile crawler to miss the language signals entirely.

Point 9: No Problematic Mobile Redirects

Check: Older Kerala websites — particularly Malayalam news portals and directory sites built before 2018 — sometimes use a separate mobile subdomain (m.domain.com) with redirect logic that sends mobile visitors to the homepage rather than the equivalent page. If a user visits yoursite.com/specific-article on mobile and gets redirected to m.yoursite.com/ (homepage), Google considers this a faulty redirect and it negatively impacts crawling efficiency and user experience signals.

Point 10: LCP Under 2.5 Seconds on Mobile

Check: Largest Contentful Paint measures how quickly the largest visible element (usually a hero image or headline) renders on screen. Google considers under 2.5 seconds "Good," 2.5–4.0 seconds "Needs Improvement," and over 4.0 seconds "Poor." Check the Core Web Vitals report in Search Console — it separates mobile and desktop performance. Kerala websites hosted on budget shared hosting with uncompressed images frequently fail this threshold, particularly for users on 4G connections in districts outside Thiruvananthapuram and Kochi where latency is higher.

Point 11: No Intrusive Interstitials on Mobile

Check: Since 2017, Google has penalized pages that show intrusive interstitials immediately after a user arrives from search — pop-ups, app install banners, newsletter overlays, or full-screen ads that obscure the content. Exceptions exist for legal pop-ups (cookie consent, age verification) and small banners that use reasonable screen space. Check your mobile pages immediately after arriving from a search result — if any pop-up blocks the majority of the screen before the user interacts with the content, it needs to be redesigned or delayed.

Point 12: All Internal Links Navigable via Touch

Check: Hover-activated navigation menus are a desktop-only interaction that breaks on touchscreens. If your site's navigation requires hovering to reveal dropdown items, mobile users (and Google's mobile crawler) cannot access those linked pages through the navigation. Verify that all internal links — including those in navigation dropdowns, sidebar widgets, and related posts sections — are accessible without hover interactions on a touch device.

Point 13: No Flash or Unsupported Video Formats

Check: Flash has been unsupported since 2020 and is completely dead on mobile. More relevant for current Kerala websites: video embeds that rely on autoplay with audio are blocked on iOS and Android, and some older video formats (.mov, .wmv, .avi) embedded directly without a wrapper may not render in mobile browsers. Embed videos using HTML5 <video> tags or iframe embeds from YouTube/Vimeo, which handle cross-browser and cross-device compatibility automatically.

Point 14: Lazy Loading on Below-Fold Images

Check: The loading="lazy" attribute on <img> tags defers loading of below-fold images until a user scrolls near them. This reduces initial page load time and improves LCP by eliminating render-blocking image requests. Verify this attribute is present on all images that are not visible in the first viewport on mobile. Note: do NOT add loading="lazy" to your hero image or above-fold images — this would actually hurt LCP by delaying the most important content.

Point 15: Render-Blocking CSS and JavaScript Eliminated for Critical Path

Check: CSS and JavaScript files in the <head> that are not needed for initial page render block the browser from displaying content until they finish downloading and parsing. Use Chrome's Coverage tool (DevTools → More Tools → Coverage) to identify unused CSS loaded on mobile pages. Add defer to non-critical JavaScript. Inline critical CSS for above-fold rendering. This is the most technically complex item in this audit, but it has the largest impact on LCP and overall mobile performance.

How to Confirm Google Is Using Your Mobile Version

Three methods, in order of reliability:

Google Search Console Settings: Navigate to Settings in your Search Console property. The "About" section shows which user agent Google uses for crawling — it should say "Smartphone" for mobile-first indexed sites.

URL Inspection Tool: Enter any URL from your site in Search Console's URL Inspection tool and click "Test Live URL." In the results panel, you can see the rendered HTML and screenshot as Google's mobile crawler sees it. Compare this to what you see in your desktop browser — any significant differences require investigation.

Search Console Mobile Usability Report: Navigate to Experience → Mobile Usability. This report lists specific URLs failing mobile criteria, categorized by error type. "Text too small to read," "Clickable elements too close together," "Viewport not set," and "Content wider than screen" are the four most common failure categories for Kerala websites.

What Responsive Design Does Not Guarantee

A significant misconception worth addressing directly: having a responsive design does not mean your site passes mobile-first indexing. Responsive design means your layout adapts to different screen sizes using CSS — that addresses Points 1, 2, 3, and 4 above. But it says nothing about whether content is hidden on mobile (Point 6), whether structured data is present (Point 7), whether your LCP is under 2.5 seconds (Point 10), or whether you have intrusive pop-ups (Point 11).

I have audited many Kerala websites built on modern WordPress themes or Webflow — technically "responsive" by any definition — that still fail 4–6 points on this checklist. Responsiveness is a prerequisite, not a certification of mobile-first readiness.

If your site was built before 2022 and has never undergone a specific mobile-first audit, assume it has failures. Work through this checklist systematically, prioritizing Points 6, 10, and 15 as the highest-impact fixes for organic rankings.

Frequently Asked Questions

What is the difference between a mobile-friendly website and a mobile-first indexed website for SEO?

A mobile-friendly website renders acceptably on small screens — text is readable, buttons are tappable, and content does not overflow horizontally. Mobile-first indexing is a different concept: it means Google uses the mobile version of your site as the primary source for indexing and ranking, regardless of whether your visitors arrive on desktop or mobile. A site can be mobile-friendly but still have a mobile version that hides content, lacks structured data, or serves fewer internal links than the desktop version — all of which harm rankings because Google ranks based on what its mobile crawler sees. The distinction matters because a responsive design alone does not guarantee that your mobile and desktop versions are equivalent for indexing purposes.

How do I test whether Google is crawling my Kerala website's mobile version or desktop version?

In Google Search Console, go to Settings and look under the "About" section — this shows whether Google is using mobile-first crawling for your site. For individual page testing, use the URL Inspection tool in Search Console and click "Test Live URL," then select the mobile user agent. You can also use Google's Rich Results Test or the Mobile-Friendly Test tool, which renders pages using Googlebot's mobile crawler. Additionally, in Search Console's Coverage and Core Web Vitals reports, data is now segmented by mobile and desktop — if the mobile report shows different URL coverage than desktop, that gap is worth investigating.

What common issues do Kerala websites built in 2019–2022 have that fail mobile-first indexing?

Kerala websites from this era most commonly fail on four points. First, they use JavaScript-heavy sliders and animations that block the critical rendering path, causing LCP failures on mobile connections (particularly on Jio and BSNL networks where latency is higher than urban broadband). Second, they have fixed-width elements — banners, tables, or image containers set to 900px or 1200px — that cause horizontal scrolling on 360–414px screens. Third, many use CSS media queries to hide entire content sections on mobile using display:none, which means Google's mobile crawler does not see that content for indexing. Fourth, contact and CTA buttons are often sized at 30–35px, below the 48px minimum tap target recommended by Google, which Search Console's Mobile Usability report flags directly.

Want a Full Mobile-First Audit of Your Kerala Website?

Get a detailed 15-point report with specific fixes prioritized by ranking impact — delivered within 48 hours.

Request an Audit