Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Kusonjululiwe

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… (funda kabanzi)

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?

Asked by gswacker 1 usuku oludlule

Answered by cor-el 10 amahora adlule

  • Kusonjululiwe

Web site not answering

I am trying to connect to a website but I keep getting error code 522. I've tried using Chrome and it connects to the website with no problem. I've checked my privacy s… (funda kabanzi)

I am trying to connect to a website but I keep getting error code 522. I've tried using Chrome and it connects to the website with no problem. I've checked my privacy settings and I do not have that website blocked. What else can I check?

Asked by w5513 3 emasontweni adlule

Answered by jscher2000 - Support Volunteer 3 emasontweni adlule

  • Kusonjululiwe

Paypal indicated Mozilla canceled my monthly donation

Just checking, can I still make a $3 monthly Paypal donation to Mozilla, or is that amount too small, or does it expire, or something to that effect? Thanks much! … (funda kabanzi)

Just checking, can I still make a $3 monthly Paypal donation to Mozilla, or is that amount too small, or does it expire, or something to that effect? Thanks much!

Asked by jimmydanger 19 amahora adlule

Answered by James 17 amahora adlule

  • Kusonjululiwe

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:… (funda kabanzi)

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

Asked by Pierre MARTIN 1 usuku oludlule

Answered by Pierre MARTIN 19 amahora adlule

  • Kusonjululiwe

Request for Implementation of Text Fragments Feature (#:~:text=) in Firefox

Dear Firefox Development Team, I hope this message finds you well. I am writing to request the implementation of a feature in Firefox that I believe would greatly enhanc… (funda kabanzi)

Dear Firefox Development Team,

I hope this message finds you well. I am writing to request the implementation of a feature in Firefox that I believe would greatly enhance user experience and accessibility on the web. Specifically, I am referring to the text fragment feature (#:~:text=) that is currently supported in browsers based on the Chromium engine, such as Google Chrome and Microsoft Edge.

The text fragment feature allows users to link directly to specific pieces of text within a webpage, facilitating more precise navigation and making it easier to reference exact portions of content. This is particularly useful for academic citations, sharing specific excerpts from lengthy articles, and improving overall user interaction with web content.

For example, a URL formatted as https://example.com#:~:text=desired%20text%20fragment directs users not just to the page, but to the exact location of the specified text, highlighting it for easy identification. This can save users significant time and improve the efficiency of information retrieval.

Given Firefox's commitment to innovation and user-centric design, I believe that integrating this feature would be a valuable addition. It would not only bring Firefox in line with other major browsers in terms of functionality but also enhance its appeal to users who rely on this precise method of navigation.

I hope you will consider this suggestion and look forward to potentially seeing this feature in a future release of Firefox.

Thank you for your continued dedication to improving the Firefox browser.

Best regards, Grey Ronin

Ps. Sorry, but due to lack of time and somewhat poor English skills this message was generated by AI.

Asked by Grey Ronin 3 ezinsukwini ezidlule

Answered by jscher2000 - Support Volunteer 3 ezinsukwini ezidlule

  • Kusonjululiwe

CAN NOT find the file path location of Firefox.exe application.

Hello, James here. I CAN NOT find the Firefox application file location. There is no option to show file path upon right click of the desktop icon and I can not locate i… (funda kabanzi)

Hello,

James here. I CAN NOT find the Firefox application file location. There is no option to show file path upon right click of the desktop icon and I can not locate it in File Explorer. I have done an entire (C:) drive search and turned up nothing. C:\Users\(username)\AppData\Local\Mozilla Firefox does not exist in my file system. I am at a loss here and it's driving me bonkers!

Asked by jbab52 3 izinyanga ezidlule

Answered by Paul 3 izinyanga ezidlule

  • Ikhiyiwe

WHAT is with the LACK OF UPDATE options making this browser WORSE THAN OTHERS it is ridiculous

Ridiculous with the new update page saying " A browser that's truly yours My Firefox: More Speed, More Security, More Fun." WHEN YOU CANNOT TURN OFF THE IDIOTIC popup spa… (funda kabanzi)

Ridiculous with the new update page saying " A browser that's truly yours My Firefox: More Speed, More Security, More Fun." WHEN YOU CANNOT TURN OFF THE IDIOTIC popup spam for the updates NOT EVEN GOOGLE CHROME DOES THAT. And ridiculous it has to LOAD THE UPDATE after restarting the browser lag time and IDIOTIC BRIGHT SCREEN FLASHING even if you have darkmode on, JESUS CHRIST this browser seems ridiculous and FAR WORSE THAN THE OTHERS WHEN EVEN CHROME IS BETTER with these settings and not being pointlessly ridiculous rofl. WHAT is going on with that people. AND SETTINGS TO FIX THAT would make this less ridiculous to use obviously, THANK

Asked by Co L 2 ezinsukwini ezidlule

Last reply by Paul 2 ezinsukwini ezidlule

  • Ikhiyiwe

FIREFOX CRASHES

firefox has fully stoped working for me, i cant open even one tab a message appears that says' guh your tab has crashed' i cant do absolutely anything, please i need help… (funda kabanzi)

firefox has fully stoped working for me, i cant open even one tab a message appears that says' guh your tab has crashed' i cant do absolutely anything, please i need help

Asked by Komo Dino 5 izinyanga ezidlule

Last reply by Catt1960 2 ezinsukwini ezidlule

  • Kusonjululiwe

Change in Tab Behavior

It seems firefox has changed the behavior of tabs. When I go to open a closed tab, I see a list of all the tabs that have been closed from every window. I want to restore… (funda kabanzi)

It seems firefox has changed the behavior of tabs. When I go to open a closed tab, I see a list of all the tabs that have been closed from every window. I want to restore the previous behavior where "recently closed tabs" only shows the tabs that were closed in the current window. I saw some about:config settings, but I'm not sure what they do and I don't want to end up losing the tab history all together.

Thanks

Asked by sugarcookie 3 ezinsukwini ezidlule

Answered by cor-el 3 ezinsukwini ezidlule

  • Kusonjululiwe

The the United States USPS website does not work properly with Firefox!!

Support, The USPS website does not work properly with Firefox!! The Home page loads okay but there are multiple other issues with links not working. For instance all of … (funda kabanzi)

Support,

The USPS website does not work properly with Firefox!! The Home page loads okay but there are multiple other issues with links not working. For instance all of the links under Quick Tools do not work except this one: https://www.usps.com/manage/po-boxes.htm. Other things don't work either.

Everything works fine that I tried with Google Chrome though! Please address soon.

Thanks

Asked by Wayne Carpenter 3 izinyanga ezidlule

Answered by Wayne Carpenter 3 izinyanga ezidlule

  • Kusonjululiwe

How to unpin Google from search bar suggestions?

I'm trying to move away from using Google, so I swapped to Duckduckgo and removed Google as a default search. However, "Search with Google" is still appearing in my searc… (funda kabanzi)

I'm trying to move away from using Google, so I swapped to Duckduckgo and removed Google as a default search. However, "Search with Google" is still appearing in my search suggestions bar with a pin icon in the corner, and I can't figure out how to remove it. Does anyone know how to do this?

Asked by Cr4sh 4 ezinsukwini ezidlule

Answered by cor-el 4 ezinsukwini ezidlule

  • Kusonjululiwe

Firefox is very slow after reinstall - tried all troubleshooting

I have been using Firefox for many years and never had issues. Two days ago, I turned on my HP with Windows 10 and I got a pop up message something about Error Platform … (funda kabanzi)

I have been using Firefox for many years and never had issues. Two days ago, I turned on my HP with Windows 10 and I got a pop up message something about Error Platform 126.0 XUL Runner is not compatible. I could not access Firefox, Google, or the internet. I uninstalled Firefox and reinstalled, but after that, everything runs very slow. Each time I go into a website, it can take up to over a minute to pull up! I cannot even delete email from my Gmail! It's piling up. Downloading can take over an hour! I checked all the trouble shooting forums in Mozilla and tried just about everything. I went back into "About:profile"s and created a new profile. It it did not make any difference. I also did a Firefox refresh. Did not help any. I went back into the profile I had before the XUL error because my bookmarks were there. Still slow. I cleaned out the cache, in both Firefox and my Windows 10. made no difference. I only have three extensions in Firefox. I don't know what else I can do to fix this. Also, my drivers and other software are automatically updated by Windows. My HP is only 2 years old as well. Everything was fine in Firefox until that XUL error message popped up and I had to uninstall and reinstall Firefox. That is when everything became agonizingly slow!

Update: My computer is barely usable anymore because of the Firefox issue. Having to wait for a minute or more for everything I do on the internet? I know it cannot be my computer itself because it is not even two years old yet. I may have to dump Firefox if I cannot get this fixed. I have Norton 360 and it is not malware or a virus. Firefox messed something up.

Asked by history1962 5 ezinsukwini ezidlule

Answered by history1962 4 ezinsukwini ezidlule

  • Kusonjululiwe

Borderline between text bar and tab bar.

So i wanted to remove borderline between text bar and tab bar. After some googling i manege to do so by console(contl+shift+alt+i), in string "--tabs-navbar-separator-col… (funda kabanzi)

So i wanted to remove borderline between text bar and tab bar. After some googling i manege to do so by console(contl+shift+alt+i), in string "--tabs-navbar-separator-color: light-dark(rgba(0,0,0,.1), rgba(0,0,0,.3));" i change 3 to 0 and borderline gone. But every time i restart browser is all back. Is there any way to make it permanent ?

Asked by Beltion 1 isonto elidlule

Answered by Beltion 6 ezinsukwini ezidlule

  • Kusonjululiwe

weird graphical bug when connected to tv through HDMI when on duplicate mode

Hello, I have a weird bug with the firefox browser causing weird graphical glitches only on the main screen when a HDMI cable is plugged in on the duplicate mode. I have … (funda kabanzi)

Hello, I have a weird bug with the firefox browser causing weird graphical glitches only on the main screen when a HDMI cable is plugged in on the duplicate mode. I have found that is is only on firefox and not my desktop or any other programs. Firefox is up to date and the issue is fixed when the HDMI set to extend

I hope you find out why this is happening and fix it swiftly Thank you -Dominic

Asked by IcyCarbide 6 ezinsukwini ezidlule

Answered by cor-el 6 ezinsukwini ezidlule

  • Kusonjululiwe

Address bar move itself to Narnia

For some reason, recent updates caused my Firefox address bar to misbehave. I have already murdered the unwanted search engine suggestions which the standard settings fa… (funda kabanzi)

For some reason, recent updates caused my Firefox address bar to misbehave.

I have already murdered the unwanted search engine suggestions which the standard settings failed to kill - I just kept turning things off in about:settings until the garbage feature died.

However, I am still unable to address the most annoying bug.

When I start typing in address bar, the pop-up box with suggestions, rather than attach itself to the bottom of the address bar, goes to some imagined, predefined anchor point which is off screen, somewhere outside the confines of the window. As a result, I see some suggestions, but I no longer see what the hell I'm even typing. I am attaching a screenshot. This is super annoying, as I am literally forced to either use bookmarks, or type out urls in notepad then paste them over.

Anyone can help?

Asked by watotem 1 isonto elidlule

Answered by TyDraniu 1 isonto elidlule