Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

My website does not shows properly (not loading the css)

  • 1 reply
  • 3 have this problem
  • 13 views
  • Last reply by TyDraniu

more options

Hello, this is the site: https://blaugranas.es

I already checked the files encoding and the files permisions, and tested the url for mozilla issues, but i can't find the reason. Thank you for your help.

Hello, this is the site: https://blaugranas.es I already checked the files encoding and the files permisions, and tested the url for mozilla issues, but i can't find the reason. Thank you for your help.

Chosen solution

Go to about:config and set network.preload = true. Then refresh your page.

In Firefox this instruction

<link rel="preload" type="text/css" href="normalize.css" as="style" onload="this.rel='stylesheet'">

doesn't work by default due to webcompat issues. This is bug 1405761 . You've to just use the normal

<link href="normalize.css" rel="stylesheet" type="text/css" media="screen" />
Read this answer in context 👍 1

All Replies (1)

more options

Chosen Solution

Go to about:config and set network.preload = true. Then refresh your page.

In Firefox this instruction

<link rel="preload" type="text/css" href="normalize.css" as="style" onload="this.rel='stylesheet'">

doesn't work by default due to webcompat issues. This is bug 1405761 . You've to just use the normal

<link href="normalize.css" rel="stylesheet" type="text/css" media="screen" />

Modified by TyDraniu