Pytania oznaczone etykietą: Pokaż wszystkie pytania
  • Rozwiązane

Pages taking ages to load

Hi all, I feel like this is a problem that must have been experienced and solved a thousand times... however I've tried all the suggested fixes I can find and the proble… (czytaj dalej)

Hi all,

I feel like this is a problem that must have been experienced and solved a thousand times... however I've tried all the suggested fixes I can find and the problem still persists.

When I load Firefox the pages take ages to load. It doesn't matter what the page is, it takes ages, except that about: pages load fine, no problem. When I say pages take ages to load, I mean that everything about the page takes ages, not only the next, not on the images and other content etc, everything. This only started happening today and I only created a new profile a month or so ago. I don't have many tabs open (maybe 20) of which 9 are pinned. I do have lots of extensions installed.

I've tried troubleshooting/safe mode, that makes no difference.

Private browsing and loading another profile are fine, they don't have this problem.

I've cleared all cache and data, cookies, etc, including startup cache.

I've deleted the content-prefs file, and removed places files.

I've tried disabling and enabling hardware acceleration.

I've tried disabling TRR.

Probably some other things too, but so far nothing has worked.

Suggestions please! :)

Pytanie zadane przez madbilly 4 miesiące temu

Odpowiedź udzielona przez madbilly 13 godzin temu

Browser Geolocation Shows Old Location

When using some websites that ask for browser permission to use your location, the location is wrong. I recently moved more than 2000 miles, and when I use Google Maps i… (czytaj dalej)

When using some websites that ask for browser permission to use your location, the location is wrong.

I recently moved more than 2000 miles, and when I use Google Maps in Firefox on my Windows laptop, its "current location" (as in, the blue dot that appears once I give Google Maps permission to use my location) is always at my old address rather than my new one.

After some digging, I discovered https://mylocation.org/, which was very helpful in that it informed me of two different types of location lookup. One of them, based on my IP address, works like a charm and shows me at my new address. The other, called "Browser Geolocation", shows my old address. And I've confirmed that this information varies from browser to browser: Firefox is wrong, Chrome is correct, Edge is correct, Brave is wrong.

This must mean that the browser stores some kind of information somehow about my location, right? How do I update this so that it matches the public IP address location?

Pytanie zadane przez peterdfinn 14 godzin temu

Since i upgraded my Mac OS to Sonoma, the type on Linked In is tiny, about 7 point

I am running a Mac Mini with the M1 chip. I recently updated the OS to Sonoma (14.5) from Monterey and find that the type on Linked In is tiny, only about 7 pt. My FF is… (czytaj dalej)

I am running a Mac Mini with the M1 chip. I recently updated the OS to Sonoma (14.5) from Monterey and find that the type on Linked In is tiny, only about 7 pt. My FF is 126.0. My minimum font size on Firefox is set to 14 pt. If I make it larger, like 20, Linked In is readable, but all my other sites are too large and hard to navigate.

Your automatic reader thinks I'm running 10.5. I've never run 10.5 on this Mac.

LI says it is a Firefox problem, which it is, because the site reads fine on Safari.

I know that there are sites which don't work on Firefox, like Chase Bank, which is a drag. Please don't tell me that LI is another one.

Somebody, please help.

Ellen Perless

Pytanie zadane przez eperless 14 godzin temu

Passwords not saved in Firefox but show in Sonoma PASSWORDS

Firefox 126.0 on Sonoma running on my Mac Studio does NOT sync passwords but DOES sync bookmarks. Firefox will not save passwords nor will it load passwords from a .csv … (czytaj dalej)

Firefox 126.0 on Sonoma running on my Mac Studio does NOT sync passwords but DOES sync bookmarks. Firefox will not save passwords nor will it load passwords from a .csv file Under Sonoma SYSTEM SETTINGS and PASSWORDS (after entering mac password) shows the website passwords there, but the passwords DO NOT show in Firefox. Restart of Mac or restart of Firefox does not fix this.

Pytanie zadane przez momiller77 15 godzin temu

  • Rozwiązane

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:… (czytaj dalej)

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

Pytanie zadane przez Pierre MARTIN 23 godziny temu

Odpowiedź udzielona przez Pierre MARTIN 15 godzin temu

Access Firefox pdf files

I uninstalled then reinstalled Firefox. I was able to recover my bookmarks, add-ons, and login information. But I do not know how to recover by pdf files. Are they go… (czytaj dalej)

I uninstalled then reinstalled Firefox. I was able to recover my bookmarks, add-ons, and login information. But I do not know how to recover by pdf files. Are they gone for good?

Pytanie zadane przez hankone225 16 godzin temu

search for websites

Good afternoon, I am not sure if the topic is the right one I choose. My question/complaint: recently websites, although mostly websites from my bookmarks, seem not ava… (czytaj dalej)

Good afternoon,

I am not sure if the topic is the right one I choose.

My question/complaint: recently websites, although mostly websites from my bookmarks, seem not available or existing. Mostly after a few minutes and a new trial, the website comes back as if nothing was wrong. Could it be the last update from Firefox? I never had these "problems" (a big word for minor inconveniences) before and I use Firefox at least during the last 15 years.

Thank you in advance for your answer.

Best regards, Rien de Vos

Pytanie zadane przez Rien 18 godzin temu

code sécurité

Hello, when making a purchase on a website with Mozilla, after entering the security code received on my mobile phone, the bank's virtual keyboard does not appear to ente… (czytaj dalej)

Hello, when making a purchase on a website with Mozilla, after entering the security code received on my mobile phone, the bank's virtual keyboard does not appear to enter the security code of my online bank. thank you for your response. Sincerely

Pytanie zadane przez xavier perrot 19 godzin temu

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… (czytaj dalej)

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

Pytanie zadane przez Sweeping 19 godzin temu

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… (czytaj dalej)

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.

Pytanie zadane przez pancerny 22 godziny temu

  • Rozwiązane

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… (czytaj dalej)

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.

Pytanie zadane przez Allan MacDonald 5 dni temu

Odpowiedź udzielona przez cor-el 2 dni temu

crashing browser

WHY THE F IS MY FIREFOX CRASHING EVERY DAY FOR THE LAST MONTH? WHAT IS GOING ON< AND HOW CAN I CORRECT IT? THIS IS A HORRIBLE EXPERIENCE, AND IF IT CAN'T BE FIXED PL… (czytaj dalej)

WHY THE F IS MY FIREFOX CRASHING EVERY DAY FOR THE LAST MONTH? WHAT IS GOING ON< AND HOW CAN I CORRECT IT? THIS IS A HORRIBLE EXPERIENCE, AND IF IT CAN'T BE FIXED PLEASE TELL ME A BETTER BROWSER>....

Pytanie zadane przez R Key Co 1 dzień temu

Ostatnia odpowiedź udzielona przez Paul 1 dzień temu

translation does not work

I have installed the German language extension . I can go to a sight written in German and it translates fine . THE SECOND I USE ANY SUB MENU WITHIN THE SIGHT IT DOES NOT… (czytaj dalej)

I have installed the German language extension . I can go to a sight written in German and it translates fine . THE SECOND I USE ANY SUB MENU WITHIN THE SIGHT IT DOES NOT TRANSLATE . right clicking and "translate" does not work since "translate" does not exist on the tab .

The firefox translate feature only works on the initial screen !

I can find no setting to fix this

Pytanie zadane przez ronaldchampagne49 3 dni temu

Ostatnia odpowiedź udzielona przez Agent virtuel 1 dzień temu

  • Rozwiązane

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… (czytaj dalej)

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.

Pytanie zadane przez Grey Ronin 2 dni temu

Odpowiedź udzielona przez jscher2000 - Support Volunteer 2 dni temu

Lost Privacy/Security folder

Using OSX 12.7.5 on two laptops and a Mac Pro. Selling one of the laptops. Removed personal data for Firefox by 'trashing' the Firefox folder in Libaray/Application suppo… (czytaj dalej)

Using OSX 12.7.5 on two laptops and a Mac Pro. Selling one of the laptops. Removed personal data for Firefox by 'trashing' the Firefox folder in Libaray/Application support. Then disscovered that the 'Privacy/Security' folder in both the laptop and Mac Pro were now empty. Nothing else affected. Went into TimeMachine and restored the entire Firefox folder from a recent backup. Privacy/Security folder not restored. Anyone have any ideas?

Pytanie zadane przez Citroenfan 1 dzień temu

Ostatnia odpowiedź udzielona przez cor-el 1 dzień temu

Right-Click Context Menu Pops Up in Wrong Location - Linux Mint (Cinnamon)

Looking for a fix on a right-click issue that I keep having... When using Linux Mint (Cinnamon), the right-click context menu occasionally becomes misaligned with the cu… (czytaj dalej)

Looking for a fix on a right-click issue that I keep having...

When using Linux Mint (Cinnamon), the right-click context menu occasionally becomes misaligned with the cursor position. Attached image shows a right click on the text box in the right browser window triggering a popup in the left browser window.

This most frequently happens when:

  • Multiple windows are open AND
  • The window being right-clicked on is "snapped" into place (by dragging to the side of the screen)

Error seems to occur most frequently on windows snapped to the right-hand-side of the screen.

Context menu placement is offset by an arbitrary amount determined at time of window-snapping. E.g., moving the cursor down 1 inch in the example image below will move the menu down 1 inch as well. Un-snapping the window, and re-snapping can adjust menu-cursor-offset distance.

Pytanie zadane przez Matt 1 dzień temu

Ostatnia odpowiedź udzielona przez cor-el 1 dzień temu

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. … (czytaj dalej)

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.

Pytanie zadane przez Kojak1958 2 dni temu

Ostatnia odpowiedź udzielona przez Kojak1958 1 dzień temu

  • Rozwiązane

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… (czytaj dalej)

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!

Pytanie zadane przez jbab52 3 miesiące temu

Odpowiedź udzielona przez Paul 3 miesiące temu