Showing questions tagged: Show all questions
  • Solved
  • Archived

White screen when loading config.office.com

Hi everyone, When i go to the website config.office.com in firefox there is just a white screen. Nothing more. Instantly white. I have checked if this is an issue at the … (read more)

Hi everyone, When i go to the website config.office.com in firefox there is just a white screen. Nothing more. Instantly white. I have checked if this is an issue at the side of Microsoft but it doesn't look like it is. The website does load correctly in Microsoft Edge.

I tried the following in Firefox: - Firefox is up to date (Version 115.0.2 64 Bits) , I have had this issue in other versions of Firefox too. It's not a new issue in this newest version. - Tried disabling all the security features in Firefox, disabling all add-ons, and disabling the extra security for cookies - Starting firefox in safe mode (Shift click on firefox, then open the website) - Checked the Network inspector. All packets have status 200 (See the first screenshot)

You can check the second screenshot for the white page.

Some help is appreciated :) Thanks!

Asked by Nathan Verkerk 1 year ago

Answered by Nathan Verkerk 1 year ago

  • Solved
  • Archived

Clickable keypad doesn't show correctly

A website I have to use for my work (for the Queensland Department of Education) requires that I input a 6-digit code; for *security*, they insist it be input by clicking… (read more)

A website I have to use for my work (for the Queensland Department of Education) requires that I input a 6-digit code; for *security*, they insist it be input by clicking on a keypad that scrambles the position of the number keys each time... It's meant to look like the first image attached below, but when I try to open it in Firefox, it looks like the second image and I can't input my code. I'd like to be able to use Firefox for EVERYTHING but I end up having to use Chrome to access this site, which I use pretty much every day for work, and it's very inconvenient.

Asked by nycarrington 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

Firefox ignoring system timezone

Firefox 115.0b7 is not correctly handling my system timezone, and using GMT instead. This only happens in specific pages, such as when accessing a website, or in `about:h… (read more)

Firefox 115.0b7 is not correctly handling my system timezone, and using GMT instead. This only happens in specific pages, such as when accessing a website, or in `about:home`. It doesn't happen in `about:config` or `about:profiles`, for instance.

`privacy.resistFingerprinting` is set to `false`. The problem persists in Troubleshoot mode. The issue isn't present in Firefox ESR 102.12.0.

Running `date -R` with the system shell: `Sat, 22 Jul 2023 12:10:42 -0300`

Javascript console at `about:config`: ``` > Date() "Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time)" > new Date() Date Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time) > (new Date()).getTimezoneOffset() 180 ```

Javascript console at `about:home` or `https://example.com`: ``` > Date() "Sat Jul 22 2023 15:10:42 GMT+0000 (GMT)" > new Date() Date Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time) > (new Date()).getTimezoneoffset() 0 ```

Asked by Felipe Silva 1 year ago

Answered by Felipe Silva 1 year ago

  • Solved
  • Archived

Links in pages produced from Javascript

I subscribe to The Times (UK) and use many of their different portals. I am, however, experiencing a really odd problem. For the last three Mondays in a row when I hover … (read more)

I subscribe to The Times (UK) and use many of their different portals. I am, however, experiencing a really odd problem. For the last three Mondays in a row when I hover over a link it shows one destination which is now three weeks out of date and downloads same when clicked. When I Inspect(Q) the relevant bit of script it shows the correct page for the current week. All other links from the current edition work as expected. The link works correctly on other days of the week. The IT support at The Times have no idea why this is happening and have simply asked me to do stupid things like clearing all cache and cookies relevant to their site. this has no effect whatsoever!

How can this happen and have you any help on the subject?

Asked by beb25hex12 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

Small font size on some websites

Firefox is displaying a smaller font on some websites. It only does it new windows, not in a private window and other browsers are fine. Screenshots attached show the co… (read more)

Firefox is displaying a smaller font on some websites. It only does it new windows, not in a private window and other browsers are fine.

Screenshots attached show the correct size (first attachment) and the incorrect smaller size (second attachment).

It's not windows accessibility aka ease of access, as nothing else is affected. All pages are on 100% zoom. I've gone to settings -> font -> advanced and the "Allow pages to choose their own fonts, instead of your selections above" is ticked.

Any ideas please?

Asked by ldene 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

the typewriter animation has deviation only on firefox?the first 3-4 letters is not showing!

Hello, this is html code: <div class="home-page-image-container"> <img src="https://webdesignleren.com/wp-content/uploads/2023/07/auto-reparatie-in-hoogvliet… (read more)

Hello, this is html code:

<div class="home-page-image-container">
  <img src="https://webdesignleren.com/wp-content/uploads/2023/07/auto-reparatie-in-hoogvliet.webp" alt="auto reparatie" />
  <div id="app"></div>
	  </div>

and this is Javascript code:
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<script>

var app = document.getElementById('app');

var typewriter = new Typewriter(app, {
    loop: true
});

typewriter.typeString('Home Developer')
    .pauseFor(2500)
    .deleteAll()
    .typeString('Web Designer')
    .pauseFor(2500)
    .deleteAll()
    .typeString('<strong>FrontEnd Developer</strong>')
    .pauseFor(2500)
    .start();

</script>

and this is CSS code:

#app{
  text-align:center;
  font-size:50px;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-clip:border-box;
   text-fill-color: transparent;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

the typewriter animation with text on chrome,edge,opera is working very wel . only on firefox is not working correctly. I see firefox has some problems with gradient.in this textwriter animation on firefox the first 3-4 letters are not showing and it has strange behaviour. I tried in this way to solve the problem:

 #app {
      text-align: center;
      font-size: 50px;
      white-space: nowrap;
      overflow: hidden;
    }

    #app::before {
      content: attr(data-text);
      display: inline-block;
      width: 0;
      color: #231557;
      animation: typewriter 4s steps(40) infinite, colorTransition 4s infinite;
    }

    @keyframes typewriter {
      from {
        width: 0;
      }
    }

    @keyframes colorTransition {
      0% {
        color: #231557;
      }
      50% {
        color: #ff1361;
      }
      100% {
        color: #ff1361;
      }
    }
 <div id="app" data-text="Hello, Gradient!"></div>

but it didn't helpt . I tried many ways but the problem is the same . can some one tell me how I can solve this problem with firefox . link text any idea is welkome it has to be some way to solve this problem . I used chatgpt but it didn't help. thanks johan

Asked by hovhannes111 1 year ago

Answered by Medhasree Suram 1 year ago

  • Solved
  • Archived

Netflix says incorrect password only in Firefox.

Just switched to firefox as my default and found that I can't sign in to netflix. It always gives me the "incorrect password" message. I've tried resetting the password, … (read more)

Just switched to firefox as my default and found that I can't sign in to netflix. It always gives me the "incorrect password" message. I've tried resetting the password, clearing cookies, restarting, turning the DNS proection off, restarting my computer, etc to no avail. Anyone else have this issue or know a potential solution?

Asked by Mckenzie Boyle 1 year ago

Answered by Mckenzie Boyle 1 year ago

  • Solved
  • Archived

One particular website no longer works with Firefox

One particular website no longer works with Firefox. https://www.familysearch.org/mapp/ I had no problems with this website until a couple of weeks ago. I can use the we… (read more)

One particular website no longer works with Firefox. https://www.familysearch.org/mapp/ I had no problems with this website until a couple of weeks ago. I can use the website with no problem on other browsers. I have tried a clean re-install of Firefox and clearing cache, but still the website does not work. Any suggestions? Thanks John

Asked by jb604 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

Cannot use firefox when vpn is on

When I use a vpn with firefox (not the firefox vpn), I cannot open normally blocked websites such as twitter or youtube, and instead they open in a sort of half-loaded st… (read more)

When I use a vpn with firefox (not the firefox vpn), I cannot open normally blocked websites such as twitter or youtube, and instead they open in a sort of half-loaded state (see image). I don't face this problem with other browsers. I have tried deleting and reinstalling firefox, but it doesn't seem to work. Can anyone help out?

Asked by formod 1 year ago

Answered by Paul 1 year ago

  • Solved
  • Archived

FireFox browser is slowing down certain websites

Some websites like youtube, twitter, reddit and maybe many more don't properly load. On youtube videos freeze after a couple of minutes, I don't have any of these other i… (read more)

Some websites like youtube, twitter, reddit and maybe many more don't properly load. On youtube videos freeze after a couple of minutes, I don't have any of these other issues on other browsers like Chrome

Asked by nomantre 1 year ago

Answered by Paul 1 year ago

  • Solved
  • Archived

Discord media not working

media like .gif files and .mp4 files are used very frequently in the Discord servers I'm in and for some reason whenever those specific file types are used won't load/fun… (read more)

media like .gif files and .mp4 files are used very frequently in the Discord servers I'm in and for some reason whenever those specific file types are used won't load/function. I noticed that while the DRM icon was present in the discord tab, that those two file types worked just fine; but I have no clue how to set it to always turn on for specific sites.

Asked by Fleur 1 year ago

Answered by Paul 1 year ago

  • Solved
  • Archived

Cannot access a website from Windows 10 but can from Windows 2012 R2

https://www.centrecom.com.au This was one of our primary suppliers for technology. Contacted them they just said "suck it up, princess". Recently AWS started doing "hum… (read more)

https://www.centrecom.com.au

This was one of our primary suppliers for technology. Contacted them they just said "suck it up, princess".

Recently AWS started doing "human verification" on all VPN traffic to websites they host on their CDN(s). This results in all our Windows 10 PCs running Firefox ESR 102.13.0 going into an endless "Human verification" loop, never able to access the website.

On the Windows 2012 R2 server we have access to the above website works. We see "human verification" for a second or two and then the website is displayed.

So, copied my profile from a Windows 10 PC that doesn't work to the server and it works.

I've tried with tracking protection off. Turned off all adblockers, run in safe mode with all addons disabled, cleared my cache, deleted all cookies Created a new profile and still no go. Turned off Windows firewall, moved hosts file out of the way. Still no go. Also deleted prefs.js to run firefox as completely vanilla without any changed preferences.

I'm not inclined to install malware, so chrome based browsers are not an option. They are actually blocked so I couldn't install them even if I wanted to.

All PCs are on 21H2 3208. Upgrading is not an option at this time. PCs will be upgraded mid-late 2024.

All PCs are required to be connected to VPN at all times as we work from home. Being on call late into the night also means we can't just disconnect. We use NordVPN. Yes I know there is a lot of paranoia about VPNs being the source of all online crime. I just think that's an over-generalization. A convenient excuse.

https://www.scorptec.com.au did a similar thing earlier this year, but at least with them we get a captcha and can get to their site.

Could this be a browser issue, or is this more likely to be a Windows 10 issue? Also updated Windows 10 to latest patch each month and it's been the same for three months.

Asked by citizen1138x 1 year ago

Answered by citizen1138x 1 year ago

  • Solved
  • Archived

Reverse of mobile's desktop mode for desktop version?

Recently I came to one site that: works on Android version of FF in modile (defailt) mode; breaks on Android version of FF in desktop mode; breaks on Desktop vers… (read more)

Recently I came to one site that:

  • works on Android version of FF in modile (defailt) mode;
  • breaks on Android version of FF in desktop mode;
  • breaks on Desktop version of FF in default mode;
  • breaks on Desktop version of FF in responsive desidn mode (in all available "devices").

So my question is: is it possible to emulate mobile (default) mode of Android version in Desktop version of FF?

Asked by Merssedes 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

FF 115.0.2 64-bit, upload buttons do nothing, tried Refresh, clearing cache

Click any upload button, e.g. on Gmail or wiki.debian.org, and absolutely nothing happens. Refreshed FF, still no change. Thanks. User Agent String: Mozilla/5.0 (X11; U… (read more)

Click any upload button, e.g. on Gmail or wiki.debian.org, and absolutely nothing happens. Refreshed FF, still no change.

Thanks.

User Agent String: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0

Asked by CorvidaeCorvus 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Locked
  • Archived

Firefox searching instead of dns resolving internal websites

I have multiple internal websites, which all follow the pattern of [site.one.two] which resolves fine using the internal DNS server i have configured by going to https://… (read more)

I have multiple internal websites, which all follow the pattern of [site.one.two] which resolves fine using the internal DNS server i have configured by going to https://site.one.two and through other programs via site.one.two, and all the [one.two] suffixes are blacklisted from being resolved with DoH in firefox, but it still forces a web-search, even with searching from address bar being turned off, instead of resolving through my local DNS server (local server resolves local domain suffixes, anything else gets resolved through cloudflare DNS). I haven't found a fix in any other forums, and there are enough unique internal addresses that manually adding each and [every site.one.two] as an exception would be something i would like to avoid. Is there any way to tell firefox to resolve through DNS first for addresses or domain suffixes?

Asked by sydmackintosh 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Google Docs: Alt+/ shortcut not working in Firefox, works in Chrome

On Google Docs, the very useful shortcut "Alt+/" for executing menu actions by name exists, similar M-x in Emacs or Ctrl+Shift+A in PyCharm or Ctrl+Shift+P in VS Code. O… (read more)

On Google Docs, the very useful shortcut "Alt+/" for executing menu actions by name exists, similar M-x in Emacs or Ctrl+Shift+A in PyCharm or Ctrl+Shift+P in VS Code.

On a German keyboard, there is no "/" key. In Chrome the hotkey "Alt+#" works instead. In Firefox, it does not.

This hotkey is particularly important, because it gives quick access to menu actions, that have no hotkey assigned, or for which the hotkey does not work on the current layout.

Is there something I can do to make it work?

Note. Based on what I know, I cannot tell if this is an issue with Firefox not sending the Alt+# key correctly, a special feature of Chrome that isn't present in Firefox, or a cross-browser compatibility issue of Google Docs, that should be blamed on Google Docs and not Firefox.

Firefox 114.0.2 (64-bit), running on Open Suse 15.3, 64 bit.

Asked by kb 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

why does google satellite view mirror diagonally in firefox??

It seems this is not a new problem. It just began today for me.... link text https://www.google.com/maps/@43.006904,-87.8956049,1023m/data=!3m1!1e3?hl=en&entry=ttu… (read more)

It seems this is not a new problem. It just began today for me....

link text

https://www.google.com/maps/@43.006904,-87.8956049,1023m/data=!3m1!1e3?hl=en&entry=ttu

How to fix?

If not fixable, will be forced to go to another browser :-(

Edition Windows 10 Pro Version 22H2 Installed on ‎11/‎8/‎2020 OS build 19045.3324 Experience Windows Feature Experience Pack 1000.19041.1000.0

Firefox 116.0.02 (64 bit)

Asked by milwaukeewobbly 1 year ago

Answered by milwaukeewobbly 1 year ago

  • Solved
  • Archived

Possible browser hyjack

In Firefox, when I type 'news' into google instead of getting a list of links it takes me straight to the Financial Times website. Is this an issue with google or is Fire… (read more)

In Firefox, when I type 'news' into google instead of getting a list of links it takes me straight to the Financial Times website. Is this an issue with google or is Firefox being hyjacked?

Asked by RickTee 1 year ago

Answered by jonzn4SUSE 1 year ago

  • Locked
  • Archived

can't sign in to mozilla support

https://connect.mozilla.org/t5/user/ssoregistrationpage?dest_url=https:%2F%2Fconnect.mozilla.org%2F link from a message to me in my email. Can't sign in . Keeps asking… (read more)

https://connect.mozilla.org/t5/user/ssoregistrationpage?dest_url=https:%2F%2Fconnect.mozilla.org%2F

link from a message to me in my email. Can't sign in . Keeps asking me to register and rejects my registered name. For the last couple years, intermittently.

Asked by metropical 1 year ago

Last reply by Paul 1 year ago

  • Solved
  • Archived

Videos washed out in FireFox

For some reason every type of embedded video, youtube, webms, etc, all show up washed out in white. This only happens in FF and I have tried a few ways to fix, but no luc… (read more)

For some reason every type of embedded video, youtube, webms, etc, all show up washed out in white. This only happens in FF and I have tried a few ways to fix, but no luck. Any ideas?


Thanks.

Asked by LazHimself 1 year ago

Answered by jonzn4SUSE 1 year ago