https://www.alibaba.com/ When, the login icon on the right cannot appear

Hello! Due to work reasons, we need to use Fiirefox 54.0.1 (64) and do not need to upgrade But open the webpage https://www.alibaba.com/ When, the login icon … (了解更多)

Hello!

        Due to work reasons, we need to use Fiirefox 54.0.1 (64) and do not need to upgrade

But open the webpage https://www.alibaba.com/ When, the login icon on the right cannot appear I searched carefully online but couldn't find a solution Please provide a solution Can you provide an email address? I can take a screenshot to illustrate the situation My email address bestfinder@foxmail.com thank you HALE

Bestfinder Hale 于 2 天前提问

Cannot find Setting to Allow REDIRECTING of a link page

On a particular webpage NCL cruises ( SHORE EXCURSIONS ) on a page where excursion items are listed . On the bottom of the page states this : 1-12 of 24. NEXT … (了解更多)

On a particular webpage NCL cruises ( SHORE EXCURSIONS ) on a page where excursion items are listed . On the bottom of the page states this : 1-12 of 24. NEXT When you click NEXT it should now go to the next page showing 13-24...It does not This function works on Microsoft Edge & Google Chrome.....Cannot find any proper settings to accomplish this function. THxs On Microsoft Edge it was the Pop-Up / Redirect setting " Blocked " with NCL as the exception

m berger 于 2 天前提问

SCROLL FREEZES

My LA TIMES pages won't scroll, they freeze. The Times says it's Firefox and they are correct. When I switch browsers the problem goes away. I've used Troubleshoot and e… (了解更多)

My LA TIMES pages won't scroll, they freeze. The Times says it's Firefox and they are correct. When I switch browsers the problem goes away. I've used Troubleshoot and erased the cache and a lot of searching to no avail.

Any insight would be most appreciated.

Flyerguy518

vendors 于 2 天前提问

Message on Amazon

Don't know what to do with this: A later version of Mozilla Firefox is required for Prime Video. To update, click the menu button (three horizontal stripes) on the web b… (了解更多)

Don't know what to do with this:

A later version of Mozilla Firefox is required for Prime Video. To update, click the menu button (three horizontal stripes) on the web browser toolbar, click {1>Help<1}, {2>About Firefox<2}, and then click {3>Restart to update Firefox<3}.

us8 于 2 天前提问

最后由 us8 于 2 天前回复

Firefox 132.02 (Aarch64)

Firefox updated on its own without permission. Allow Firefox to Automatically install updates (recommended) X Check for updates but let you choose to install them Even… (了解更多)

Firefox updated on its own without permission.

Allow Firefox to Automatically install updates (recommended) X Check for updates but let you choose to install them

Even with the Check for... checked it still installed the updates. What can I do to stop Firefox from auto updating.

Thank you

P.S.Macbook Pro Sequoia 15.1

c Monaco 于 2 天前提问

Sponsored Links

Probably an odd question. I dismissed a sponsored link accidentally on the new tab page that I do use, so I want to get it back as a sponsored link. If I'm going to the s… (了解更多)

Probably an odd question. I dismissed a sponsored link accidentally on the new tab page that I do use, so I want to get it back as a sponsored link. If I'm going to the site anyway, firefox should get whatever cut it can. How do I restore a dismissed sponsored link? Thanks

jasonina 于 2 天前提问

Tabs for my website URL, previously assigned to a now-deleted container, keep crashing. No other tabs crash.

Tabs for my website URL, once assigned to a now-deleted container, keep crashing. Deactivating "Container" add-on did not help. My URL opens fine on other computers, othe… (了解更多)

Tabs for my website URL, once assigned to a now-deleted container, keep crashing. Deactivating "Container" add-on did not help. My URL opens fine on other computers, other browsers. It seems permanently contaminated by a bad container assignment. No other tabs crash. Help!

Jonathan Tourtellot 于 2 天前提问

Accute sign does not work as first character of a line

Hey, guys. I have a problem when i type ´ + E or ´ + A, it should produces É and Á but it is deleted instantaneously. In firefox search bar it works as expect, but in sky… (了解更多)

Hey, guys. I have a problem when i type ´ + E or ´ + A, it should produces É and Á but it is deleted instantaneously. In firefox search bar it works as expect, but in skype or whatsapp it doesnt. My keybord is abnt2

vfbsilva 于 2 天前提问

最后由 vfbsilva 于 2 天前回复

Opening PDFs

I'm migrating a bunch of PDFs from an old Windows 8.a computer to a new Windows 11. I located a matrix under settings that offers some choice as to how FF was to handle d… (了解更多)

I'm migrating a bunch of PDFs from an old Windows 8.a computer to a new Windows 11. I located a matrix under settings that offers some choice as to how FF was to handle downloaded PDFs. There are three options: Save, Open, Ask. I want to save only (Opening slows down the migration process). I selected Save in the drop down menu, but FF continue to Open. Can't continue until I solve this problem.

Thanks

admin908 于 2 天前提问

Problem with HTMLCanvasElement.toBlob(), "image/webp", & anchor (<a>) using download attribute

I have a local HTML/Javascript document I use for compressing local image files. It relies on HTMLCanvasElement.toBlob() to achieve the compression in the usual way; a p… (了解更多)

I have a local HTML/Javascript document I use for compressing local image files. It relies on HTMLCanvasElement.toBlob() to achieve the compression in the usual way; a pertinent excerpt:

                   const output = document.getElementById("outputDiv");
                   const blobURL = URL.createObjectURL(file);
                   const img = new Image();
                   img.src = blobURL;
                   // ...
                   img.onload = function () {
                       URL.revokeObjectURL(this.src);
                       const canvas = document.createElement("canvas");
                       canvas.width = img.width;
                       canvas.height = img.height;
                       const ctx = canvas.getContext("2d");
                       ctx.drawImage(img, 0, 0, img.width, img.height);
                       canvas.toBlob(
                           (blob) => {
                               const anchor = document.createElement("a");
                               anchor.download = getNewFileName(file.name); /* uses extension .webm for .webm, .jpg for everything else */
                               anchor.href = URL.createObjectURL(blob);
                               anchor.textContent = "DOWNLOAD";
                               output.append(anchor);
                           },
                           mime,  /* set earlier based on file extension: .webm -> "image/webm", everything else -> "image/jpeg"
                           quality / 100    /* (user-specified) */
                       );
                   };

Here's the quirky thing, though: when I'm compressing, say, a .jpeg file (or a .png), clicking on the download link opens a save-file dialog, but when using a .webm file, it opens the compressed image in a new tab! True, I can always then save the image from there (the resulting file is in Firefox's temp folder), but I don't understand the difference in behavior -- and indeed, in at least one other browser I tried (the latest Vivaldi) the download happens as expected regardless of input file type. In all cases the anchor hrefs look like, e.g., "blob:null/724ab85e-53ba-4890-9868-7f1ba27d4278".

Any idea why this is happening? I highly doubt it's the intended behavior.

Browser: Firefox 132.0.2 for Windows. Environment: Windows 10 Home 22H2 version 10.0.19045.

E.C. Marm 于 3 天前提问

最后由 E.C. Marm 于 2 天前回复

Excel online via Sharepoint: Spreadsheet zoom controls not showing in lower right corner

FF v132.0.2 (64-bit). We utilize Sharepoint/Microsoft 365, and since switching to Firefox, the zoom controls normally located in the lower righthand corner for Excel spre… (了解更多)

FF v132.0.2 (64-bit). We utilize Sharepoint/Microsoft 365, and since switching to Firefox, the zoom controls normally located in the lower righthand corner for Excel spreadsheets is just gone. This is with extensions disabled, even tried Private View. Chrome properly shows it.

Screenshots attached showing Firefox/Chrome. That basically eliminates our ability to use FireFox if that's the case since there's no other way to do it.

DGDomtar 于 2 天前提问

Firefox won't launch after updating macOS unless booting the MBP in safe mode

Hi everyone, I recently updated my macOS to Ventura 13.6.9 along with updating to the newest Firefox Nightly; now whenever I try to launch Firefox, it just hangs and wil… (了解更多)

Hi everyone,

I recently updated my macOS to Ventura 13.6.9 along with updating to the newest Firefox Nightly; now whenever I try to launch Firefox, it just hangs and will never load the start page. If I give it about 5-10 minutes, it will eventually load the favorites bar, and then when I click into the address bar to type, it hangs again. If I give it another few minutes, I can type but hitting enter/return, nothing happens.

If I restart my MBP and hold shift to boot into safe mode, Firefox loads perfectly fine with no issues or hangs at all. I'm just not sure what is different that would be causing it to hang when booting into regular mode?

I saved the Apple crash report to see if that's any help for diagnosing the issue, here's a link to the .txt file - https://file.io/ZRVgd3A8jzoA

If there's anything else I can provide that would help, please let me know!

Thanks all!

partial 于 3 个月前提问

最后由 partial 于 2 天前回复

Different page size across different platforms: laptop vs. PC?

I'm logged in to my Firefox account, I visit (for example) ESPN.com on my PC. I adjust the size to fit my PC screen, then when I visit the same site on my laptop the webs… (了解更多)

I'm logged in to my Firefox account, I visit (for example) ESPN.com on my PC. I adjust the size to fit my PC screen, then when I visit the same site on my laptop the website doesn't look right so I have to size down, but then when I visit on my PC I have to size up again etc etc etc.

I want to individualize the size of webpages, how do I do that?

batboy42 于 1 周前提问

最后由 batboy42 于 2 天前回复

Appearance issues

My firefox browser is displaying webpages with a black background despite being set on light mode.

Nick 于 2 天前提问

Cannot use Firefox to access internat Intranet due to not http or https

Firefox automatically adding the https to our internat Intranet and I cannot access it. Auto adding the https is off. This site is only available within our firewall. I h… (了解更多)

Firefox automatically adding the https to our internat Intranet and I cannot access it. Auto adding the https is off. This site is only available within our firewall. I have had access forever until recent updates have made it impossible to access it.

I type in the URL: ourintranet/ and that has always gone to the site. Now, it is changing it to https://ourintranet/ when I hit enter...never done this before. I have this setting: Don’t enable HTTPS-Only Mode enabled.

jbehymer 于 2 天前提问

最后由 jbehymer 于 2 天前回复