Message reads: Mozilla Firefox (Not responding)

Hello, Whenever I try to open something on Firefox, for example, the Library, I get the message "Mozilla Firefox (Not Responding) and it hangs with no immediate responsiv… (Lesen Sie mehr)

Hello, Whenever I try to open something on Firefox, for example, the Library, I get the message "Mozilla Firefox (Not Responding) and it hangs with no immediate responsive action. I click on any Firefox button or tab and I get the same message and I get the blue little circle and I sit and wait about 30 seconds or more. The page or tab eventually works but it hangs for 30 seconds or more. It is frustrating. Please help.

Thanks, Tricia

Gefragt von Sweeping vor 14 Minuten

Having trouble seeing webpages in Mozilla Firefox

Hello, Mozilla Community I'm contacting you to ask for help with a problem I'm having with Mozilla Firefox so that I can visit https://bestrealtorsinpensacola.com. It won… (Lesen Sie mehr)

Hello, Mozilla Community I'm contacting you to ask for help with a problem I'm having with Mozilla Firefox so that I can visit https://bestrealtorsinpensacola.com. It won't load, and I'm not sure if that's because of a bug in the website, a browser issue, or something else entirely.

Does anyone else have knowledge of this problem or recommendations for a fix? I've attempted removing addons and cleaning the cache in my browser, but the issue still exists.

I would be grateful for any advice or ideas on improving the usability of the website. Thank you in advance for your assistance.

Gefragt von Ralex Yalvem vor 48 Minuten

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:… (Lesen Sie mehr)

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 ANE */ @keyframes mouvement-uniforme {

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

}

@-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); } }



@-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); }

}


.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!!

Gefragt von Pierre MARTIN vor 4 Stunden

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… (Lesen Sie mehr)

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

Gefragt von It's me vor 2 Stunden

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… (Lesen Sie mehr)

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.

Gefragt von pancerny vor 3 Stunden

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… (Lesen Sie mehr)

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.

Gefragt von Mateusz (Mateuszy) vor 1 Monat

Letzte Antwort von Mateusz (Mateuszy) vor 4 Stunden

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 … (Lesen Sie mehr)

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)

Gefragt von captainuncertain vor 5 Stunden

Letzte Antwort von captainuncertain vor 5 Stunden

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… (Lesen Sie mehr)

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?

Gefragt von gswacker vor 10 Stunden

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. … (Lesen Sie mehr)

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.

Gefragt von Kojak1958 vor 1 Tag

Letzte Antwort von Kojak1958 vor 11 Stunden

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… (Lesen Sie mehr)

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

Gefragt von bill344 vor 20 Stunden

Letzte Antwort von bill344 vor 14 Stunden

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… (Lesen Sie mehr)

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~

Gefragt von houmei1216 vor 15 Stunden

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… (Lesen Sie mehr)

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

Gefragt von pierce5 vor 15 Stunden

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… (Lesen Sie mehr)

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!

Gefragt von mschubb1 vor 16 Stunden

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… (Lesen Sie mehr)

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.

Gefragt von hawkes.j vor 16 Stunden

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, … (Lesen Sie mehr)

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

Gefragt von tracyjarchow vor 19 Stunden

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… (Lesen Sie mehr)

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.

Gefragt von Alex Benshoff vor 20 Stunden