Your robots.txt is blocking CSS and JavaScript that Googlebot needs to render the page. Because Google renders with a headless browser before it judges your content, blocked render resources make Google see a broken, unstyled layout. With mobile-first indexing, that broken render is the version Google uses to rank you. The fix is simple: stop disallowing the folders that hold render-critical CSS and JS, and only block truly private endpoints.
What this check flags
The "Mobile Resources Blocked" check fires when your robots.txt disallows paths that contain CSS, JavaScript, or other files Googlebot must download to render the page. The usual culprits are broad rules against directories like /wp-content/, /assets/, /themes/, or a whole CDN subdomain or directory that quietly holds your stylesheets and scripts. When a rule like Disallow: /wp-content/ sits in your robots.txt, every stylesheet and script under that folder becomes off-limits to the crawler, even though those files build the visible, mobile layout of your page.
Google is explicit about this. Its guidance says to always allow Googlebot access to the JavaScript, CSS, and image files your site uses, so it can see your pages the way an average visitor does. Blocking those assets is treated as a problem, not a preference.
Why blocked resources break rendering
Google does not just read your raw HTML. When Googlebot fetches a URL with a 200 status, the page is queued for rendering, and a headless Chromium loads it, executes the JavaScript, and applies the CSS, exactly like a real browser. Google then parses that rendered result to understand your layout, content, and links.
Here is the catch: Google will not render JavaScript or CSS from files it is blocked from crawling. If robots.txt disallows those resources, the rendering step runs without them. Instead of your finished, styled mobile page, Google sees a stripped, unstyled wall of plain HTML. From Google's point of view, that looks like a broken page with a poor user experience, and the quality of both rendering and indexing suffers.
Mobile-first indexing raises the stakes. Google now uses the mobile rendering of your page as the primary version for indexing and ranking. So this broken, resource-starved render is not a secondary view Google glances at. It is THE version Google judges. If render-critical CSS and JS are blocked on mobile, you are handing Google a damaged page and asking it to rank that.
Where this comes from
Almost always, the cause is an over-aggressive robots.txt written with good intentions. Three patterns dominate. First, blocking a whole framework directory to keep Google out of system files, which sweeps up the stylesheets and scripts living in that same tree. Second, disallowing an entire CDN directory because that is where assets are served from, not realizing render-critical files sit there too. Third, legacy advice: blanket rules like Disallow: /wp-includes/ copied between sites. That advice predates the rendering pipeline Google uses today, and it harms modern indexing.
How to fix it
The principle: allow everything Google needs to render, and block only endpoints that are genuinely private or pointless to crawl, such as admin actions or internal API routes. Start by removing or narrowing the broad disallow rules, then add explicit allow rules for your render resources.
A robots.txt that causes this problem usually looks like the example below. Do not ship this:
User-agent: *
Disallow: /wp-content/
Disallow: /wp-includes/
Disallow: /assets/
Disallow: /themes/A safe version keeps the crawler away from real admin endpoints while explicitly allowing the CSS and JS that render the page. On WordPress, the standard pattern is to block /wp-admin/ but allow admin-ajax.php, and to leave /wp-content/ crawlable:
User-agent: *
Disallow: /wp-admin/
Allow: /wp-admin/admin-ajax.php
Allow: /wp-content/uploads/
Allow: /*.css$
Allow: /*.js$
Sitemap: https://seoprocheck.com/sitemap.xmlIf your CSS and JS are served from a CDN on a separate hostname, remember that the CDN host has its own robots.txt. Make sure that file is not blocking the asset paths either, because Google checks robots.txt per host before fetching a resource.
How to diagnose it
Use Google Search Console's URL Inspection tool on an affected page, then run "Test Live URL" and view the rendered screenshot and HTML. If the screenshot looks unstyled or broken, or the "Page resources" list shows items blocked by robots.txt, you have confirmed the issue and you can see exactly which files are blocked. Cross-check each blocked path against your robots.txt rules. The robots.txt report in Search Console, and Google's robots.txt parsing behavior, let you confirm which rule is matching a given URL so you can target the exact line to change.
Common mistakes to avoid
Do not rely on a blanket Disallow for a whole directory to protect a few sensitive files. Block the specific endpoints instead. Do not forget the CDN or subdomain robots.txt when your assets live off the main host. Do not assume an Allow rule will override a Disallow automatically without testing, because the most specific matching rule wins and ordering nuances matter. And do not copy a robots.txt template from an old tutorial. Validate every disallow against a live render before you trust it.
A: Both. Google states that when robots.txt prevents access to assets, the quality of rendering and indexing suffers, which can lead to lower rankings. A page Google sees as broken is a page it is reluctant to rank well.
A: Yes, for resources that do not contribute to visible content or layout, such as analytics pings or third-party scripts you do not control. Google says to allow any embedded resource that meaningfully affects what users see, and you can leave the rest blocked.
A: Google refetches robots.txt regularly, often within a day. To speed things up, run "Test Live URL" in URL Inspection to confirm a clean render now, then request indexing so the page is re-rendered with the resources unblocked.
Need a full technical audit?
SEO ProCheck runs deep crawls that catch issues like this across your whole site.
Claude Vincent is a technical SEO consultant focused on crawlability, rendering, and AI-search visibility. He writes the field guides and case studies at SEO ProCheck, with a bias toward the durable, unglamorous work that decides whether search engines and AI answer engines can actually read and cite a site.
About SEO ProCheck
Technical SEO consulting and GEO strategy with 20 years of enterprise experience. Case studies, resources, and tools for search and AI visibility.
Work With Me
Technical SEO audits, GEO strategy, site migrations, and international SEO. Hourly consulting for teams who need hands-on support, not just reports.








