Отображение вопросов с тегом: Показать все вопросы
  • Решено
  • Архивировано

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 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

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

Задан Pierre MARTIN 11 месяцев назад

Дан ответ Pierre MARTIN 11 месяцев назад

  • Решено
  • Архивировано

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!

Задан jimmydanger 11 месяцев назад

Дан ответ James 11 месяцев назад

  • Решено
  • Архивировано

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.

Задан rahul.epsilon09 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

Fonts are broken in Firefox

Hello! I installed Firefox about a year ago, and for the entire duration it seems about 60% of the time the default fonts on various websites look weird (bold?). I have t… (читать ещё)

Hello! I installed Firefox about a year ago, and for the entire duration it seems about 60% of the time the default fonts on various websites look weird (bold?). I have tried uninstalling/reinstalling Firefox, clearing the cache, etc. See attached images for examples. Help!

Задан Adam Duckworth 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

Tab dragging stops working at random times

Sometimes drag functionality stops working. I can't grab a tab to move it to another position or to a new window. (Holding left click on the tab and moving the cursor doe… (читать ещё)

Sometimes drag functionality stops working. I can't grab a tab to move it to another position or to a new window. (Holding left click on the tab and moving the cursor does nothing). Also, re-merging the tab with another firefox window stops working. (Dragging a tab to a firefox window from another firefox window doesn't merge them. It does nothing) I can right click on the tab and select Move to move it to a new window but dragging stops working. I have to close Firefox and start it again (sometimes twice), then dragging starts working again. This happens multiple times a day. I am on Linux Mint and the version is 126.0 (64-bit). This problematic behavior has only recently began.

Задан tenkayr 11 месяцев назад

Дан ответ TyDraniu 11 месяцев назад

  • Решено
  • Архивировано

My browsing history in my sidebar is a day behind since I upgraded my Mac OS to Sonoma

I have just upgraded the OS on Mac Mini with the M1 chip to Sonoma (14.5) I am running Firefox 126.0. Now it seems that I have more than one problem since the upgrade. T… (читать ещё)

I have just upgraded the OS on Mac Mini with the M1 chip to Sonoma (14.5) I am running Firefox 126.0.

Now it seems that I have more than one problem since the upgrade. The browsing history in my sidebar is not current. It is running about a day behind.

I reported earlier that the type on my LinkedIn is only out 7 pt when my settings have the minimum size at 14 pt.

Somebody please help. I'm afraid to do a refresh because I don't know what it will do to my banking settings.

Ellen Perless

Задан eperless 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

Firefox 126.0 on Sonoma 14.5 not saving passwords

After up grading to a Mac Studio running Os 14.5, I downloaded the latest Firefox 126.0. I have three other computers with Firefox. The oldest a Mac Pro running 10.13.6… (читать ещё)

After up grading to a Mac Studio running Os 14.5, I downloaded the latest Firefox 126.0. I have three other computers with Firefox. The oldest a Mac Pro running 10.13.6 Hi Sierra that works flawlessly. I tried sync and bookmarks came over to the Mac Studio but not any passwords. I tried importing via a .csv file and got the message: Import complete New passwords added: 0 Existing entries updated: 0 Duplicate entries found: 0 Errors 190 (not imported)

Firefox will NOT even save manually entered passwords. I suspect some problem with Sonoma's paranoid security but I cannot find a solution. Any suggestions?

Задан momiller77 11 месяцев назад

Дан ответ momiller77 11 месяцев назад

  • Решено
  • Архивировано

drag and drop url to bookmarks bar not working with >100% default page zoom

I was in the middle of asking this question when I fixed (worked around) the problem so I'm posting more as a informative post as there is a lot of old misdirection out t… (читать ещё)

I was in the middle of asking this question when I fixed (worked around) the problem so I'm posting more as a informative post as there is a lot of old misdirection out there now.

I am(was) unable to drag any URLs from the URI drop down field in the main interface to my bookmarks toolbar. Nor was any drag and drop functionality working in the "Customise Firefox" screen (right click space on url bar -> Customise Toolbar).

I have now found that resetting my zoom setting in preferences to 100% restores this functionality. The problem arose when I was using 120% zoom, NOT text only.

Задан 4t0m1c4 11 месяцев назад

Дан ответ TyDraniu 11 месяцев назад

  • Решено
  • Архивировано

Language in menu of FF 126.0 is mixed up

Hello, I have a problem: After an automatic update of the language packs, parts of the Firefox menu (version 126.0) are displayed in EN. Parts in DE. Seems to be related… (читать ещё)

Hello, I have a problem: After an automatic update of the language packs, parts of the Firefox menu (version 126.0) are displayed in EN. Parts in DE. Seems to be related to the update... how can I change this again? I have already changed the language settings. Didn't help...it appeared after an automatic update on May 28. Thanks for an idea :)

Задан fibroblast 11 месяцев назад

Дан ответ Paul 11 месяцев назад

  • Решено
  • Архивировано

Language Pack didn't apply properly

After applied Chinese Language Pack, the menu didn't change ,even after restart firefox or the system. I tried refresh firefox and re-install the language pack, the same … (читать ещё)

After applied Chinese Language Pack, the menu didn't change ,even after restart firefox or the system. I tried refresh firefox and re-install the language pack, the same situation appeared.

Задан Copyerder 11 месяцев назад

Дан ответ Paul 11 месяцев назад

  • Решено
  • Архивировано

control + up shortcut does not work now. does not go to top of page.

control + UP (arrow) is documented to "go to top of page". That has broken as of 126.0 And, for some reason I don't remember, I found that using "HOME" in the past was … (читать ещё)

control + UP (arrow) is documented to "go to top of page". That has broken as of 126.0 And, for some reason I don't remember, I found that using "HOME" in the past was also problematic.

How do I report something as "b roken" to firefox and do you agree it is broken?

Задан Joe P 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

I am not able to import my bookmarks from HTML though I have exported them in a HTML file

Hey, I have previously exported my bookmarks in an HTML file. When reinstalling Firefox, I tried to import them using the HTML backup file. It says that 309 bookmarks ha… (читать ещё)

Hey,

I have previously exported my bookmarks in an HTML file. When reinstalling Firefox, I tried to import them using the HTML backup file. It says that 309 bookmarks have been found, but nothing changes on the bookmarks bar, still showing the "Import bookmarks" bookmark. These are very important bookmarks I would really like to get back, can you help me please ?

Задан Daphné Lambert 11 месяцев назад

Дан ответ Daphné Lambert 11 месяцев назад

  • Решено
  • Архивировано

Wrong focus when right-clicking on a bookmark (126.0 for Linux Mint)

Since the latest update, when I right-click on a bookmark or an item in the history list (from the menu or the bookmarks toolbar), I still get the menu that has items lik… (читать ещё)

Since the latest update, when I right-click on a bookmark or an item in the history list (from the menu or the bookmarks toolbar), I still get the menu that has items like "Open in new tab" or "Edit Bookmark".

However, the focus for the mouse stays on the previous menu, so that I can't click on anything in the "right-click menu", instead it is interpreted as a click in some random item in the previous menu.

Going into troubleshoot mode didn't help, so I don't think it's my configuration causing this.

Задан christinetobler 11 месяцев назад

Дан ответ jonzn4SUSE 11 месяцев назад

  • Решено
  • Архивировано

Bing Maps causes firefox to crash

When I open Firefox and call up bing maps , it starts to load the page , then Firefox crashes . Has been doing this for several firefox versions . Looking at the crash r… (читать ещё)

When I open Firefox and call up bing maps , it starts to load the page , then Firefox crashes . Has been doing this for several firefox versions . Looking at the crash report , I always get "The debug symbols are missing for firefox. Please install firefox-dbg." but I can't find firefox-dbg to load

Задан jones2347 11 месяцев назад

Дан ответ jones2347 11 месяцев назад

  • Решено
  • Архивировано

Lost bookmarks after installing Windows

I had to restore Windows to its initial settings. I lost all my programs because of this, including Firefox. I reinstalled the browser, logged in to my account (which is … (читать ещё)

I had to restore Windows to its initial settings. I lost all my programs because of this, including Firefox. I reinstalled the browser, logged in to my account (which is synchronized), but instead of recovering all my bookmarks I got nothing. Empty bookmark box. What's worse, they were initially available on the mobile device, but they were also deleted there (both from the browser and from the smartphone). Firefox restored history, add-ons, but not bookmarks. Is there any way to recover these bookmarks?

Задан macadr 11 месяцев назад

Дан ответ jscher2000 - Support Volunteer 11 месяцев назад

  • Решено
  • Архивировано

How to force spellcheck for all websites

I would like to force spellcheck for all websites, and override any HTML code from the websites. which may be disabling it. This should be done automatically and not by i… (читать ещё)

I would like to force spellcheck for all websites, and override any HTML code from the websites. which may be disabling it. This should be done automatically and not by inspecting and manually altering the HTML. I consulted with ChatGPT and tried adding some code to my existing userChrome.css but it is having no effect, even after clearing cache and restarting Firefox. For instance, faxzero.com has a form with spellcheck disabled. I tinkered with the CSS and kept testing faxzero, but the spellcheck always remains disabled. How can I accomplish my goal?

Code: body[spellcheck="false"], input[type="text"][spellcheck="false"], input[type="email"][spellcheck="false"], input[type="password"][spellcheck="false"], input[type="search"][spellcheck="false"], input[type="url"][spellcheck="false"], textarea[spellcheck="false"], [contenteditable="true"][spellcheck="false"] {

   spellcheck: true !important;

}

Задан wlesney 11 месяцев назад

Дан ответ jscher2000 - Support Volunteer 11 месяцев назад

  • Решено
  • Архивировано

Secure Connection Failed

I am getting "Secure Connection Failed", Ive seen literally hundereds of same error also exist here. Like most of default solution (which is below) did not work for me. M… (читать ещё)

I am getting "Secure Connection Failed", Ive seen literally hundereds of same error also exist here. Like most of default solution (which is below) did not work for me. My laptops time is correct, And I highly doubt reddit and most of internet has issue with its security certificates. And other browser works just fine. So What is my solution other than immigrating to new browser?

https://support.mozilla.org/en-US/kb/secure-connection-failed-firefox-did-not-connect?as=u&utm_source=inproduct

Задан sinan50563 11 месяцев назад

Дан ответ jscher2000 - Support Volunteer 11 месяцев назад

  • Закрыто
  • Архивировано

Unable to

I tried redownloading Firefox after I saw that i was unable to download any extenstions/add-ons. Anytime i try to download something from the firefox browser, the downl… (читать ещё)

I tried redownloading Firefox after I saw that i was unable to download any extenstions/add-ons. Anytime i try to download something from the firefox browser, the download fails or gets cancelled. I never changed any settings, how can i fix this?bold text

Задан Qtip_69 11 месяцев назад

Последний ответ от Paul 11 месяцев назад

  • Решено
  • Архивировано

Firefox tab crashing immediately on Twitch.tv

My Firefox tab keeps crashing on a particular website. Whenever I go to twitch.tv, the site begins to load and then I get the "Gah. Your tab just crashed." screen. I'm on… (читать ещё)

My Firefox tab keeps crashing on a particular website. Whenever I go to twitch.tv, the site begins to load and then I get the "Gah. Your tab just crashed." screen. I'm only getting this crash on twitch.tv pages, and this issue just started on May 31, 2024. When I try to open a twitch.tv page in Private Mode, the page loads just fine. I've never had a Firefox tab crash prior to this.

I've tried turning off all of my Firefox extensions, but that didn't solve the issue. I also tried opening Firefox in Troubleshooting Mode, but I still got the tab crash. I'm using the latest version of Firefox as of today's date.

Задан echidnaenigma 11 месяцев назад

Дан ответ cor-el 11 месяцев назад