White screen

Whenever I try to log into my online banking all I get is a white screen, nothing whatsoever. I can log in just fine using the dreaded Microsoft Edge or Chrome but firef… (閱讀更多)

Whenever I try to log into my online banking all I get is a white screen, nothing whatsoever.

I can log in just fine using the dreaded Microsoft Edge or Chrome but firefox will not work.

Now, I do know that I have actually logged in with firefox because if I come back to the page 10 minute later I get a banking message saying that as I haven't done anything for 10 minutes it has now logged me out!

I have cleared cache & cookies, I've started in safe mode and looked at the threads in the forum but nothing helps.

This is happening on all instances of firefox that I have, work, home, laptop.

please help

thanks

It's me 於 34 分鐘前 詢問

Cannot download anything any addon refuse to install.

As title- Cannot download for example webm format, but jpg is okay. cannot install any addon, theme or anything. DRM didnt install as well. i was trying reinstall, refres… (閱讀更多)

As title- Cannot download for example webm format, but jpg is okay. cannot install any addon, theme or anything. DRM didnt install as well. i was trying reinstall, refreshing browser, rebooting.

pancerny 於 53 分鐘前 詢問

Animation CSS on my web site doesn't work on firefox

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox... here is my code:… (閱讀更多)

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox...

here is my code:


/* -------------------------------------- */ /* ANIMATION : TRANSLATION */ @keyframes mouvement-uniforme {

   0% 		{ animation-timing-function: linear; transform: translateX(-500px); }
   100% 	{ animation-timing-function: linear; transform: translateX(30px); }

}

@-ms-keyframes ms-mouvement-uniforme {

   0% 		{ -ms-animation-timing-function: linear; -ms-transform: translateX(-500px); }
   100% 	{ -ms-animation-timing-function: linear; -ms-transform: translateX(0px); }

} @-o-keyframes o-mouvement-uniforme {

   0% 		{ -o-animation-timing-function: linear; -o-transform: translateX(-500px); }
   100% 	{ -o-animation-timing-function: linear; -o-transform: translateX(0px); }

}


@-webkit-keyframes webkit-mouvement-uniforme {

   	0% 		{  -webkit-animation-timing-function: linear; -webkit-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); }

2% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(60px ) translateY(2px ) rotate(2deg); }

4% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(120px ) translateY(2px ) rotate(2deg); }


8% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(180px ) translateY(2px ) rotate(2deg); }

12% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(245px); } 36% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(-2px); }

38% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-2px) translateY(2px ); }

40% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px); }

42% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(1deg) translateY(-2px ); }

43% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(-3deg); }


100% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(0px); } }



@-moz-keyframes moz-mouvement-uniforme {

  	0% 		{  -moz-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); }

2% { -moz-transform: translateX(60px ) translateY(2px ) rotate(2deg); }

4% { -moz-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -moz-transform: translateX(120px ) translateY(2px ) rotate(2deg); }


8% { -moz-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -moz-transform: translateX(180px ) translateY(2px ) rotate(2deg); }

12% { -moz-transform: translateX(210px ) translateY(0px )rotate(-1deg); } 14% { -moz-transform: translateX(240px ) translateY(1px )rotate(1deg); } 18% { -moz-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -moz-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -moz-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -moz-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -moz-transform: rotate(1deg) translateX(245px); } 36% { -moz-transform: rotate(0deg) translateX(-2px); }

38% { -moz-transform: translateX(-2px) translateY(2px ); }

40% { -moz-transform: translateX(-245px); }

42% { -moz-transform: translateX(-245px) rotate(1deg) translateY(-2px ); }

43% { -moz-transform: translateX(-245px) rotate(-3deg); }


100% { -moz-transform: translateX(0px); } }





.position { position: relative; top: -200px; left: -280px; float:left; }

.bouge { animation: mouvement-uniforme 60s ; -webkit-animation: webkit-mouvement-uniforme 20s ; -webkit-animation-iteration-count: infinite;-webkit-animation-fill-mode: forwards;-webkit-animation-duration: 15s; -webkit-animation-delay: 0s; -webkit-overflow-scrolling: auto!important;

-moz-animation: moz-mouvement-uniforme 20s; -moz-animation-iteration-count: infinite; -moz-animation-fill-mode: forwards; -moz-animation-duration: 15s; -moz-animation-delay: 0s; -ms-animation: ms-mouvement-uniforme 10s ; -o-animation: o-mouvement-uniforme 10s ; }


It was working fine before on firefox. it works on other browsers (opera, Edge,..) Do something changed? it's a long time that i didn't chek it so...

this is the page where a donkey should appear at the bottom of the page:

https://www.campingnoroc.com/en/our-campsite/


Thanks a lot for your help!!

Pierre MARTIN 於 1 小時前 詢問

Firefox automatically download files .docx from facebook page as pdf

Hello, I have problem with firefox. When I try download from facebook page files .docx, .xlsx (Microsoft Office) Firefox automatically download it as PDF and file is brok… (閱讀更多)

Hello, I have problem with firefox. When I try download from facebook page files .docx, .xlsx (Microsoft Office) Firefox automatically download it as PDF and file is broken. I don't know how to repair this. Please help, it is very frustrating.

Mateusz (Mateuszy) 於 1 個月前 詢問

Mateusz (Mateuszy) 最近回覆於 1 小時前

Firefox update – lost passwords – no sign of firefox logins.json etc

Been searching. Updated firefox and lost passwords (across MacBook and iMac Firefox versions) so googled, went looking for logins.json etc files. No sign of them, and no … (閱讀更多)

Been searching. Updated firefox and lost passwords (across MacBook and iMac Firefox versions) so googled, went looking for logins.json etc files. No sign of them, and no firefox folder in applicationsupport/library on my Mac. Showing hidden files. About:profiles shows only one profile. No idea how I can restore things. Time Machine backup on desktop iMac has no firefox profile files. Where is the data please? Etc etc :O)

captainuncertain 於 3 小時前 詢問

captainuncertain 最近回覆於 3 小時前

Amazon website just churns in Firefox

Just today, I can no longer access the Amazon website. The pages load halfway and then it just churns/spins and never completes loading the page. So far I've discovered… (閱讀更多)

Just today, I can no longer access the Amazon website. The pages load halfway and then it just churns/spins and never completes loading the page. So far I've discovered no other websites that have the same problem.

I am able to access the Amazon website on three other browsers - Edge, Brave and DuckDuckGo - with no problems and normal loading speed. I don't use Chrome, so I can't speak to that.

I've tried clearing the cache and that did not help. I had a Firefox update installed a couple of days ago. Don't know how long it had been sitting there, as Firefox is almost always open and doesn't have the opportunity to update until I close everything and restart my computer, which I did a couple of days ago.

Windows 10 on a Dell pc/laptop. Firefox Version 126.0 (64-bit).

Any ideas on how to fix?

gswacker 於 8 小時前 詢問

Amazon Login

Firefox is synced on all my computers. Same version. Same extensions. I can't login on my primary desktop as of last night 5/23/24. I can login/watch Prime on my laptop. … (閱讀更多)

Firefox is synced on all my computers. Same version. Same extensions. I can't login on my primary desktop as of last night 5/23/24. I can login/watch Prime on my laptop. My desktop gives me the attached error.

Kojak1958 於 1 天前 詢問

Kojak1958 最近回覆於 9 小時前

Hovering over Username displays a gear which when clicked on exposes passwords and allows them to be edited

When logging into a Wordpress site on Firefox, hovering over Username displays a gear (see first screenshot) which when clicked on exposes passwords and allows them to be… (閱讀更多)

When logging into a Wordpress site on Firefox, hovering over Username displays a gear (see first screenshot) which when clicked on exposes passwords and allows them to be edited (see second screenshot). This does not happen on other browsers. I'm on Firefox 126.0, MacOS Big Sur 11.7.10

bill344 於 18 小時前 詢問

bill344 最近回覆於 11 小時前

Can't download anyfiles on Firefox

Hi guys. Need some help. I can't download any files using Firefox. It always says, "Failed". I tried other browsers, and I'm able to download just fine. I already trie… (閱讀更多)

Hi guys.

Need some help. I can't download any files using Firefox. It always says, "Failed".

I tried other browsers, and I'm able to download just fine.

I already tried this guide, https://support.mozilla.org/en-US/kb/cant-download-or-save-files, but still same.

I haven't tried to re-install Firefox because I have a bunch of workbook marks that might get lost. So, I want the re-install option as a last resort.

Thanks~

houmei1216 於 12 小時前 詢問

Sudden Proliferation of Google Adds

Shoot!! I just filled this out, and somehow, it reverted me back to This screen again!! I am not a programmer or IT Guy. What I am is a person that is Very alert to sudde… (閱讀更多)

Shoot!! I just filled this out, and somehow, it reverted me back to This screen again!! I am not a programmer or IT Guy. What I am is a person that is Very alert to sudden changes in my experiences. I retired 14 years ago, as a Manager in a Manufacturing industry. Very familiar using desktop. For some reason, about a couple weeks ago, some of my sites have begun using google adds, over and over. When I click on the "X", wants to know why, etc. I use Malware Bytes, scans every day. Does NOT discover any malware, but I KNOW something has changed to allow the bombardment! Is it possible it's just a single site that I had to change and log in to? Even if so, WHY doesn't Malware stop them? Should I try a system restore to weeks ago? I am on here Every day.so I'm pretty cognizant of changes! ADVICE PLEASE!! Bruce Pierce

pierce5 於 13 小時前 詢問

Firefox only microphone problem -- enabled for site but doesn't work

Thanks in advance for any insight or suggestions. My preferred browser is Firefox. In Chrome, I can easily use a voice search from www.google.com. In Firefox, the perm… (閱讀更多)

Thanks in advance for any insight or suggestions. My preferred browser is Firefox. In Chrome, I can easily use a voice search from www.google.com. In Firefox, the permissions show my preferred mic as enabled and selected for that webpage -- but no sound is detected. (Using Firefox. mic works fine at https://www.onlinemictest.com.)

(BTW, speaker output is Realtek motherboard audio and mic input is a Shure X2U USB interface. This mic works just fine in zoom, whereby, audition, etc. as well as working google.com using chrome)

Have worked through various settings in the SOUND panel and SITE PERMISSIONS with no luck.

Any ideas about this problem -- or what other settings to trouble shoot?

Thanks!

mschubb1 於 14 小時前 詢問

Every download fails, including extensions

Hi there, On the 23. of Mai I first noticed that I am unable to download any files whatsoever. I tried downloading .exe files and also a .csv file. When I try to downloa… (閱讀更多)

Hi there,

On the 23. of Mai I first noticed that I am unable to download any files whatsoever. I tried downloading .exe files and also a .csv file. When I try to download one of these files it appears in the downloads window but immediately goes to the status "Failed". Any retry fails as well.

The same thing goes for extensions. I cannot download any extensions or plugins using my Firefox browser. Since I reinstalled Firefox I can now also not use Plex because Firefox can't install the required plugins.

I will attach screenshots of all the errors I get.

All of the above worked when I tried it on the Edge browser.

Firefox version: 126.0 Windows 11

Things I have tried to fix the issue:

  • Use the network connection from my phone instead of my home network
  • Disable firewall and windows defender
  • Reinstall Firefox
  • Refresh Firefox
  • Downgrade to version 125.0.1 and 122.0
  • Reset router to factory settings
  • Flush dns
  • Restart PC
  • Manually delete profile folder
  • Delete temp files
  • Change download destination
  • Disable "Block dangerous and deceptive content"
  • Troubleshoot Mode

Is Firefox using some other temporary folder for downloads?

Any ideas on how to fix this issue would be appreciated.

Thank you.

hawkes.j 於 14 小時前 詢問

Approve Twitter X Ad Blocker add on update

Please approve the update to Twitter X Ad Blocker. I've chatted with AldAstra Labs the creator and they have an update but are waiting on Firefox to approve it. Thanks, … (閱讀更多)

Please approve the update to Twitter X Ad Blocker. I've chatted with AldAstra Labs the creator and they have an update but are waiting on Firefox to approve it.

Thanks, Tracy

tracyjarchow 於 17 小時前 詢問

WhyWhy isn't layers.acceleration.force-enabled by default set to True? Awful screen tearing on clean install Win 11 - fixed

If you experience horizontal lines appearing when scrolling after installing firefox possible fix is finding layers.acceleration.force-enabled and set to true after going… (閱讀更多)

If you experience horizontal lines appearing when scrolling after installing firefox possible fix is finding layers.acceleration.force-enabled and set to true after going to about:config in your address bar search for this and set it to true. My real question I ask myself is, why isn't this enabled by default when installing firefox? I swear I remember doing this last Win 11 install as well. My third time installing windows unfortunately, just had a nvme ssd drive fail on me. 😭😢 Ofc, it had to be my Gen 4, C: drive with my old User account on there as well. :// Lesson learned, always backup important data frequently as desired. :( Oh well, just lost all my saved games and few songs, no big deal I guess.

Alex Benshoff 於 18 小時前 詢問

Keystrokes to make a copy of a PORTION of a webpage

Firefox interferes with Shift+Control+Command+4 which should give me a drag icon to copy an area of a webpage. Sometimes it works and sometimes Firefox prevents me from … (閱讀更多)

Firefox interferes with Shift+Control+Command+4 which should give me a drag icon to copy an area of a webpage. Sometimes it works and sometimes Firefox prevents me from selecting a part of the page to copy and instead opens up a new tab. I don't want a new tab, I want to make a copy of part of a page. How can I disable that "New tab" function so that I can make a copy of part of my screen? Sometimes I have to resort to doing Shift+Control+Command+3 and making a copy of the whole screen, then putting that in an email so I can make a copy of just the portion that I wanted from the page. I am considering switching to SAFARI as my default browser because this makes me so mad.

TBinLA 於 19 小時前 詢問

All downloads fail, including extensions

No idea what the cause is but I cannot download ANYTHING on my browser for some reason. Pictures, documents, executables, browser extensions. Tried downloading documents … (閱讀更多)

No idea what the cause is but I cannot download ANYTHING on my browser for some reason. Pictures, documents, executables, browser extensions. Tried downloading documents from email attachment.. fail Tried downloading VLC... fail Tried every default recommended solution, clean install, you name it. Mind you all of these files downloaded just fine perfectly via Microsoft Edge.

Noticed another abnormality. Changed the download folder to a custom one. Download failed and DELETED the folder for some reason.

drotar.david 於 19 小時前 詢問