Find us at BrightonSEO 25/26 April - STAND 18! Fill your swag bag!

Dealing with Page Speed issues?

Crawl your website with Sitebulb for 300+ tech SEO checks

Try for Free

This Hint has been deprecated, and has been superseded by Eliminate render blocking resources. In order to get the most accurate audit results from Sitebulb, please ensure you update to the latest version.

Medium This Hint is worth investigating further, and may warrant further attention depending on the type and quantity of URLs affected. Issue This Hint represents an error or problem that needs to be fixed.

Style sheets are loaded after JavaScript resources in the <head>

URLs that contain stylesheet <link> elements in the <head>, which are loaded after a <script> element.

Why is this important?

Before the browser can render a page it has to build the DOM tree by parsing the HTML markup. During this process, whenever the parser encounters a script it has to stop and execute it before it can continue parsing the HTML.

You want to specify all CSS resources as early as possible within the HTML document so that the browser can discover the <link> tags and dispatch the request for the CSS as soon as possible.

If scripts are found before the stylesheet links, this adds a delay to this timeline, and causes the page to render more slowly.

What does the Hint check?

This Hint will trigger for any internal URL which contains <script> elements in the <head> that are above style sheet <link> elements.

Examples that trigger this Hint:

The Hint would trigger for any URL that has scripts before style sheets links in the <head>:

<head>
<meta charset="UTF-8">
...
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/templates/main/js/modernizr.custom.99144.js" type="text/javascript"></script>
<link href="/css/base.css" type="text/css" rel="stylesheet"/>
...
</head>

How do you resolve this issue?

CSS is a render blocking resource, so you need to get it to the browser as soon and as quickly as possible to optimize the time to first render.

To ensure that rendering is not delayed, you want to specify all CSS resources as early as possible within the HTML document, so you need to move style sheets above any scripts in the <head>.

Further Reading

Sitebulb Desktop

Find, fix and communicate technical issues with easy visuals, in-depth insights, & prioritized recommendations across 300+ SEO issues.

  • Ideal for SEO professionals, consultants & marketing agencies.

Sitebulb Cloud

Get all the capability of Sitebulb Desktop, accessible via your web browser. Crawl at scale without project, crawl credit, or machine limits.

  • Perfect for collaboration, remote teams & extreme scale.