Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

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!

선택된 해결법

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.

문맥에 따라 이 답변을 읽어주세요 👍 2

모든 댓글 (3)

more options

선택된 해결법

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!