
Our website doesn't display properly on Firefox
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!
Chosen solution
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.
Read this answer in context 👍 2All Replies (3)
Chosen Solution
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.
Wesley Branton is the man!!! Thank you SO SO much!
Also, thanks for also including the link to the MDN article!
No problem! Glad I could help!