Søg i 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

Our website doesn't display properly on Firefox

more options

Our business website has recently been relaunched, it displays fine on other browsers but is beyond broken on Firefox. I've attached a screenshot of how it looks on Chrome, to see how it looks on Firefox here is our url: https://www.exegetic.biz/.

As you can see it's VASTLY different and VERY frustrating. I've done a fair amount of reading as to what the issue could be but all the suggestions I have found are end user based... For example emptying the cache, clearing cookies, checking the zoom etc. This doesn't really help since I've looked at the site on various devices with FireFox and they all appear the same...

Has anyone else experienced this? Any help would e greatly appreciated!

Our business website has recently been relaunched, it displays fine on other browsers but is beyond broken on Firefox. I've attached a screenshot of how it looks on Chrome, to see how it looks on Firefox here is our url: https://www.exegetic.biz/. As you can see it's VASTLY different and VERY frustrating. I've done a fair amount of reading as to what the issue could be but all the suggestions I have found are end user based... For example emptying the cache, clearing cookies, checking the zoom etc. This doesn't really help since I've looked at the site on various devices with FireFox and they all appear the same... Has anyone else experienced this? Any help would e greatly appreciated!

Valgt løsning

You are using the following line to load your CSS file:

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

This is an experimental feature. The rel value preload is not supported in Firefox and is only supported by Google Chrome. Therefore, Firefox can't see your CSS file and your elements aren't being styled correctly.

It's a simple fix. Just change that line to:

<link rel="stylesheet" href="/css/style.css">

For more information, please refer to Preloading content with rel="preload" on MDN.

Hope this helps.

Læs dette svar i sammenhæng 👍 2

Alle svar (3)

more options

Valgt løsning

You are using the following line to load your CSS file:

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

This is an experimental feature. The rel value preload is not supported in Firefox and is only supported by Google Chrome. Therefore, Firefox can't see your CSS file and your elements aren't being styled correctly.

It's a simple fix. Just change that line to:

<link rel="stylesheet" href="/css/style.css">

For more information, please refer to Preloading content with rel="preload" on MDN.

Hope this helps.

more options

Wesley Branton is the man!!! Thank you SO SO much!

Also, thanks for also including the link to the MDN article!

more options

No problem! Glad I could help!