태그된 질문 보이기: 모든 질문 보이기
  • 해결된 질문
  • 잠김

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.

3일 전에 Kojak1958님이 질문

3일 전에 Kojak1958님이 답변

  • 해결된 질문

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?

2일 전에 gswacker님이 질문

1일 전에 cor-el님이 답변

  • 해결된 질문

Address bar jumping off screen when used

Since 2 weeks, I have been facing a UI error in the address bar. Whenever I select it to type something, the bar and search suggestions jump up off-screen. Pic attached. … (자세히 살펴보기)

Since 2 weeks, I have been facing a UI error in the address bar. Whenever I select it to type something, the bar and search suggestions jump up off-screen. Pic attached.

2일 전에 rahul.epsilon09님이 질문

1일 전에 cor-el님이 답변

  • 해결된 질문

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! … (자세히 살펴보기)

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!

2일 전에 jimmydanger님이 질문

2일 전에 James님이 답변

  • 해결된 질문

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

2일 전에 Pierre MARTIN님이 질문

2일 전에 Pierre MARTIN님이 답변

  • 해결된 질문

Unable to zoom, to view larger image that is available with Chrome

I've migrated to Firefox from Chrome and am getting everything as close as possible to my Chrome setup. This is a usability issue when I zoom on an image, that has a larg… (자세히 살펴보기)

I've migrated to Firefox from Chrome and am getting everything as close as possible to my Chrome setup. This is a usability issue when I zoom on an image, that has a larger version. Chrome allows me to zoom to the full extent of the image, but Firefox screen shakes and doesn't allow the same detail. Screen recording and links below.

Screen recording Firefox

Screen recording Chrome

This is a link to the item in question.

1주 전에 Allan MacDonald님이 질문

3일 전에 cor-el님이 답변

  • 해결된 질문

Fifefox does not save a new payment method, clicking on save does nothing

Hi, it seems that my Firefox browser does not want to save a new payment method. I'm trying to access "Settings -> Privacy & Security -> Autofill" and then clic… (자세히 살펴보기)

Hi, it seems that my Firefox browser does not want to save a new payment method. I'm trying to access "Settings -> Privacy & Security -> Autofill" and then click on "Saved payment methods", which opens a dialog with the existing payment methods and options to remove/add/edit. I'm clicking on Add, filling-in the card details and then clicking Save, nothing happens....

I previously had a working saved payment method, but it stopped working (I think more than 6 months ago). I tried to re-enable the credit cards by setting the following configs on about:config page:

- extensions.formautofill.creditCards.available: true
- extensions.formautofill.creditCards.supportedCountries: '...,RO' -> (I was adding my country to the existing list)

After the browser restart with those new settings when I'm on a payment page, clicking on a credit card field will show the saved credit card but if I click on it, it will not fill the details. And also trying to save a new card, manually as described previously in this message, or by the automatically prompt to save a new card after a successful payment was done. Both methods failed on me but with no error (I cannot see the saved payment on the list).

I tried removing the existing saved card, it worked removing it, but the add is still not working.

I also tried restarting in save mode, launching Firefox in a separate profile and added my country on the creditCards config for supportedCountries to show the "Saved payment methods" button on new profile, and it did not change anything.

I'm thinking there is a missing permission somewhere on the disk but I don't know where is the payment data stored on disk.

I would really appreciate any help on this.

PS: Check the attached pic to see the payment add and clicking the save button does nothing (also there are no validation errors). And the other: FF version, OS, troubleshooting info.

3일 전에 Mike S님이 질문

2일 전에 Mike S님이 답변

  • 잠김

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… (자세히 살펴보기)

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

3일 전에 Co L님이 질문

3일 전에 Paul님이 마지막 답변

  • 해결된 질문

Closed tabs not restoring

Hello, I closed my browser, expecting it to save my current tabs as it usually does. When I reopened it, the tabs were gone. They were important for me, and some of them … (자세히 살펴보기)

Hello, I closed my browser, expecting it to save my current tabs as it usually does. When I reopened it, the tabs were gone. They were important for me, and some of them were pretty old so I can't find them in my history. I tried checking the "recently closed tabs" option, it didn't help. There was also no option to restore the previous session. Can you help me restore my lost tabs?

3일 전에 guynardia님이 질문

3일 전에 cor-el님이 답변

  • 해결된 질문

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… (자세히 살펴보기)

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

4일 전에 sugarcookie님이 질문

4일 전에 cor-el님이 답변

  • 해결된 질문

Q: Why does blocked website (pwnedpasswords.com) still leave cookies?

Hello, I recently deleted pwnedpasswords.com from my cookies, as well as blocked this website; however, it keeps reappearing in my list of cookies. I've never even visi… (자세히 살펴보기)

Hello,

I recently deleted pwnedpasswords.com from my cookies, as well as blocked this website; however, it keeps reappearing in my list of cookies.

I've never even visited this site (that I'm aware of), and it's a bit concerning to me.

In spite of clearing ALL my cookies (and blocking this website), it keeps appearing in my list!

Please advise :)

1주 전에 TM님이 질문

5일 전에 TM님이 답변

  • 해결된 질문

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… (자세히 살펴보기)

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?

6일 전에 Cr4sh님이 질문

5일 전에 cor-el님이 답변

  • 해결된 질문

Can no longer detach tabs in Firefox 126

Tab detachment was working fine until updating to Firefox 126. Now the tabs cannot be moved, detached or dragged to another window. In about:config, browser.tabs.allowT… (자세히 살펴보기)

Tab detachment was working fine until updating to Firefox 126. Now the tabs cannot be moved, detached or dragged to another window.

In about:config, browser.tabs.allowTabDetach is set to true

Suggestions?

5일 전에 Jeffery Small님이 질문

5일 전에 Jeffery Small님이 답변

  • 해결된 질문

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 … (자세히 살펴보기)

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.

6일 전에 history1962님이 질문

6일 전에 history1962님이 답변

  • 해결된 질문

Where/How to Report a Website Impersonating Firefox?

I recently came across a webpage that is made to look like a message from Firefox letting you know you need to update the browser. Where should this be reported? I'm sure… (자세히 살펴보기)

I recently came across a webpage that is made to look like a message from Firefox letting you know you need to update the browser. Where should this be reported? I'm sure this is some malicious download though I have no way of checking.

6일 전에 firefox.o5fi4님이 질문

6일 전에 jonzn4SUSE님이 답변

  • 해결된 질문

My passwords are getting removed one by one... Why?

Sadly, I am now forced to leave firefox. My passwords are getting "forgotten" more and more each day. Did i get hacked? Few passwords like proton mail I don't actually ha… (자세히 살펴보기)

Sadly, I am now forced to leave firefox. My passwords are getting "forgotten" more and more each day. Did i get hacked? Few passwords like proton mail I don't actually have anywhere else. Auto-Backup of firefox seems to be of the same day as the original??? So it loses the data then saves it twice? who designed this? I'm angry, not at firefox/mozilla. angry at myself for putting my trust in the first place. Chromium doesn't sync so it leaves me with chrome FFS. Does someone has a magic wand to recover the lost data? login.json is same day as original so not an option.

6일 전에 romanash님이 질문

6일 전에 romanash님이 답변

  • 해결된 질문

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… (자세히 살펴보기)

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 ?

1주 전에 Beltion님이 질문

1주 전에 Beltion님이 답변