Showing questions tagged:

Menu Layout Misalignment and Image Loading Issues in Mozilla Firefox

On my food menu website (https://cavamenuprice.com/cava-menu-waldorf-md/), I’m encountering an issue in Mozilla Firefox where the menu layout appears misaligned and some … (read more)

On my food menu website (https://cavamenuprice.com/cava-menu-waldorf-md/), I’m encountering an issue in Mozilla Firefox where the menu layout appears misaligned and some images are not loading correctly. The problem does not occur in other browsers. Has anyone faced similar issues, and what are the best practices for ensuring compatibility and consistent appearance across all browsers?

Archived 1 351

YouTube video not working,buffering?

Starting yesterday, every youtube video I try to watch never plays or is in a constant state of buffering. It works fine in Edge, and Twitch streaming has no issues so i… (read more)

Starting yesterday, every youtube video I try to watch never plays or is in a constant state of buffering. It works fine in Edge, and Twitch streaming has no issues so its definitely not my internet connection.

I've already tried clearing my cache, rebooting, clearing it again and refreshing Firefox and the issue remains. Disabled adblocker as well. I am currently on version 106.0.5

Solved Archived 6 344

Directv streaming on computer

Directv streaming has been operational since I signed up a few weeks ago until today using FireFox browser except today. After signing into Directv , the channels display… (read more)

Directv streaming has been operational since I signed up a few weeks ago until today using FireFox browser except today. After signing into Directv , the channels display correctly but will not open for viewing. Need guidance on the fix.

Archived 1 342

"Sign In" Screen of "https://torontosun.com/sign-in/" does not Load in Virtual Box VM

My Environment: Host Machine - Intel Core i7-4771 @3.50GHz, 16GB RAM NVIDIA GeForce 210 Display Adapter, Intel Gigabit Network Connection (ISP connection is around 700MBp… (read more)

My Environment: Host Machine - Intel Core i7-4771 @3.50GHz, 16GB RAM NVIDIA GeForce 210 Display Adapter, Intel Gigabit Network Connection (ISP connection is around 700MBps).

OS - Windows 7 Pro V.22H2 Browser = Firefox ver.128.0.3 64bit.

Virtual Machine (VM) - Oracle Virtual Box Ver. 7.0.20 r163906, RAM = 4GB, Network = Bridged Adapter.

OS = Windows 7 Pro V. 22H2 Browser = Firefox ver. 128.0.3 64bit.

The Problem (In my VM only because I never browse sites on my Host PC): Toronto Sun website "Sign In" Screen never loads. A quarter circle just goes round and round. The website in question is - https://torontosun.com/sign-in/ The website itself does load fine and I can browse the site and all articles. But I cannot log into the site because the "Sign in" screen never loads. Also, Firefox tabs crash very frequently on this whole website.

Firefox is the only browser that I have on both my Host and VM (I have deleted MS Edge since it cannot be uninstalled).

On my VM, I tried installing Google Chrome and it works fine. The Toronto Sun Sign In page loads fine and I can log in.

On my Host PC, Firefox actually works. I tried it to see if the "Sign In" screen appears and it does and I can log in. It is only on my VM that it does not load.

What has Changed:

The Oracle Virtual Box software was just updated from ver. VirtualBox-7.0.18-162988-Win to ver. VirtualBox-7.0.20-163906-Win.

What I have tried: I have already done the following: Cleared - "Everything" including History, cookies, Temporary Cached files and pages and Site Settings.

I do not have any add-ons or themes installed.

I have cleared all Windows and User Temp Folders and files. I have rebooted several times in the past couple of days.

I tried increasing the VM RAM from 4GB to 6GB - did not help.


I would appreciate a solution.

Thanks very much. Kenneth

Solved Archived 5 342

Almost every paid streaming service reports errors (Mac)

I have had an issue for months where streaming services like Netflix, Hulu, Max, and Amazon Prime will not work on Firefox. I am updated to the latest version, 127.0 (64-… (read more)

I have had an issue for months where streaming services like Netflix, Hulu, Max, and Amazon Prime will not work on Firefox. I am updated to the latest version, 127.0 (64-bit), and am able to successfully log in to these streaming services, but without fail get an error message when I attempt to stream a video. Netflix returns a F7531 error, Max returns an error code, and Prime Video says I cannot stream without the latest version of the browser even though I am up to date. I have restarted and updated Firefox multiple times, have toggled and uninstalled extensions and nothing has worked. The extensions I currently use are Auto Tab Discard, Google Analytics Opt-Out, Honey, Return Youtube Dislike, Search by Image, Shinigami Eyes, Sponsorblock for Youtube, UBlock Origin, To Google Translate, and Video DownloadHelper.

Archived 3 333

I'm getting a popup blocked on a page I need to have the popup working

I have turned off all extensions, allowed all permissions on the page, changed the Privacy to Standard, turned off enhanced protection, but I still cannot get the popup t… (read more)

I have turned off all extensions, allowed all permissions on the page, changed the Privacy to Standard, turned off enhanced protection, but I still cannot get the popup to show on this page (need login to see actual page)

https://app.gohighlevel.com/location/ApwnvXGFIEHm8LKgmFQz/page-builder/hKQsgETZFHVjwGxTUCeN

I cannot find anything else which can be blocking it, but something is.

If I load the page in Edge, it works fine.

Archived 22 324

FIREFOX CAN'T OPEN EMBEDDED SITE

Firefox Can’t Open This Page To protect your security, vimeo.com will not allow Firefox to display the page if another site has embedded it. To see this page, you need to… (read more)

Firefox Can’t Open This Page

To protect your security, vimeo.com will not allow Firefox to display the page if another site has embedded it. To see this page, you need to open it in a new window. Many websites show this. How to overcome this

Archived 8 324

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="strokeC… (read more)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Archived 14 324

Firefox hangs on Wordpress Login

I am using FF 129.0 64 bit on Linux Mint. AFAIK all is up to the latest version. When I log into my website admin on wordpress, my site gets redirected for a security che… (read more)

I am using FF 129.0 64 bit on Linux Mint. AFAIK all is up to the latest version.

When I log into my website admin on wordpress, my site gets redirected for a security check on the server (lightspeed or PC Guard). Once this is complete, the login continues.

Unfortunately for the last 6 weeks, my website redirects with a message, "Verifying that you are not a robot" and it hangs there permanently.

I have tried to get my server to disconnest Lightspeed and PC Guard (but then have NO security protection). Nothing seemed to work, and access was sproradic, but seemed best when FF was completely cleaned, cache, cookies, etc. However, even this did not guarantee a login.

Then I found that all worked perfectly using Chrome. Further, having logged in using Chrome, the FF version would now be unlocked and work perfectly.

So it seems as though FF is not clearing a status/flag/file somewhere and that Chrome clears this, leaving FF working again - for another 24 hours. Then the whole cycle starts again.

Any ideas?

Mark

Solved Archived 1 307

Linked image (via "src=") not displaying (FF 126.0.1 & 127.0)

Hi Guys, This is a recent hiccup and only seems to affect Firefox 126.0.1 & 127.0 (I'm running Win64 EME-free): I have a HTML file which displays images from various … (read more)

Hi Guys,

This is a recent hiccup and only seems to affect Firefox 126.0.1 & 127.0 (I'm running Win64 EME-free):

I have a HTML file which displays images from various weather-cam websites, using the HTML "img src=" tag.

On previous versions of Firefox all was fine, however since 126.0.1 one image in particular will not display - it simply shows a broken image place-holder. Using MS Edge and Chrome, it displays correctly.

This is the image in question:

http://119.17.143.158:8777/Streaming/channels/102/picture/?auth=U1BDRzo1NG5keXAwMW50IQ==

I suspect it's something to do with the "auth=" 'key'?

Thanks in advance for any suggestions/assistance.

Mike.

Solved Archived 5 298

E*Trade analyst research tab not displaying properly

The E*Trade analyst research tab does not display properly with text appearing over top of other text, strange numbers, and certain links inactivated. See attached exam… (read more)

The E*Trade analyst research tab does not display properly with text appearing over top of other text, strange numbers, and certain links inactivated. See attached example screenshots showing issues (yellow highlighting with Firefox) and proper display (green highlighting with Chrome). Thanks!

Archived 3 288

Google Photos, when editing photos, creates visual issues in Firefox (works fine in Chrome) - graphics settings?

When I try to edit & crop in Google Photos, I get the image artifacts as you can see in the image with lines and the image doesn't correct itself so it's impossible t… (read more)

When I try to edit & crop in Google Photos, I get the image artifacts as you can see in the image with lines and the image doesn't correct itself so it's impossible to edit well. If I save the image after all the lines are added, then reload it will show but then I have to start the crop over again to get both sides.

This works fine in Google Chrome, so there is some issue with the Firefox browser on my laptop. graphics: Intel Iris Xe Graphics 1920x1080 x 8bit 60.05 Hz refresh rate

What could be causing an issue on Firefox but not Chrome?

Archived 3 279

Discord crashes as soon as someone else joins VC

Hey, I have noticed recently that Discord crashes its tab as soon as someone else joins a voice call and microphone access is given. I am on Linux/NixOS/Hyprland and am … (read more)

Hey,

I have noticed recently that Discord crashes its tab as soon as someone else joins a voice call and microphone access is given.

I am on Linux/NixOS/Hyprland and am not experiencing this issue on Linux/Endeavour/Gnome.

The crash report mainly complains about libxul.

Any ideas or directions are greatly appreciated.

Best

Archived 2 279

Can't play netflix. Error code F7701-1003

I'm getting the F7701-1003 error every time I try to play Netflix (works fine on other browsers). I tried every step of this guide this guide and triple checked it. I tri… (read more)

I'm getting the F7701-1003 error every time I try to play Netflix (works fine on other browsers). I tried every step of this guide this guide and triple checked it. I tried uninstalling, resetting profile, I that checked resistfingerprinting is turned on. I'm kind of at a lost. At this point I'm being forced to use other browsers...

Solved Archived 7 271

Scrambled test on certain websites

On certain websites I am getting scrambled text, mostly in headings and titles, not so much in body text. I have followed several tips from other posts like mine, i.e., i… (read more)

On certain websites I am getting scrambled text, mostly in headings and titles, not so much in body text. I have followed several tips from other posts like mine, i.e., installed Open Sans font, but that did not do it. I turned off hardware acceleration, and cleared the cache. The only thing that did work was to start Firefox in troubleshooting mode. I only have two add-ons running, Short URL and Dashlane, I doubt they're responsible for this. Any other ideas?

Solved Archived 5 271

DirecTV Stream no longer supporting Firefox browser

As of today, DirecTV is no longer supporting Firefox for watching live streaming. They show the attached image. Brave works, too, btw (Chromium-based browser). Do you kno… (read more)

As of today, DirecTV is no longer supporting Firefox for watching live streaming. They show the attached image. Brave works, too, btw (Chromium-based browser). Do you know why this is happening? Has Mozilla been in talks with DirecTV about this? I use this feature every day.

Archived 7 270

The website https://www.thehindu.com/myaccount/ does not open up in Firefox.

The website https://www.thehindu.com/myaccount/ does not open up in Firefox (129.0.1). But it duly opens up in Edge. I cleared the cache in Firefox and tried number of ti… (read more)

The website https://www.thehindu.com/myaccount/ does not open up in Firefox (129.0.1). But it duly opens up in Edge. I cleared the cache in Firefox and tried number of times. But the page expected to open a login page, so I even added pop-up exception for the web site. But it still does not open in Firefox. Opening the site in Edge was a cakewalk without clearing cache or adding a pop-up exception.

Archived 1 270

Can Google be blocking us to force us from your Free Firefox to Google's Chrome etc

27 July 2024 From [email address] And [email address] This is not easy to put into words, because it has been going on for weeks. Is it that Firefox needs to now make sur… (read more)

27 July 2024

From [email address] And [email address]

This is not easy to put into words, because it has been going on for weeks. Is it that Firefox needs to now make sure Firefox Servers always recognise www.change.org and so to automatically clear the way for our www.proton.me email providers to use Firefox Search engine to always reach change.org, which we prefer to use Firefox as freedom of speech fighters, because of Google is playing secret censorship and ambushing games worldwide, because it Google www carrier monopoly to secretly play with us or is the trouble we have now for Google to ambush us repeatedly so Google can to take us away from using free Firefox to only Google search engines?.

The problem and proof it is so is that:

We have 2 petitions on www.change.org. Then for weeks we, and others we know and met in the streets to sign our petitions, have been having problems to sign and or confirm the petitions have been signed and confirmed back to them and us from our Civil rights Petition agents Change.org. As last resort Change.org lately told to try use to Google Chrome, instead of Firefox that we prefer to use and support, then we may get pass the error message that’s blocking our supporters from our list. We installed Google Chrome and other non Google Search Engines like Duck Duck Go and we still get the same blocks, so we must be losing Signatures and Petition Supporters of our Petitions and time. We suspect Google is deliberately ambushing us to force us to leave Firefox Search Engine. Google is the firm that www.Change.org use to run their Petitions sites. The staff at Change do not know what Google has been secretly doing in ambushing people who do not use or want Google Chrome etc to sign up to our petitions and ambushing our Proton.me private email when we use our Proton.me emails via Firefox.

The problem we have for weeks now, severely now affecting our 2 Petitions counts is that: After people sign our petitions on change, change.org sends automatically an email to the petitions signers for the signer to click a link to prove they really signed up to my petitions on change. When they click and are authenticated Change.org then send us a confirmation email and their names appear our petition lists, for us to click to thank them and ask them to share our petitions, and sent the singers petition updates via change.org.

Some friends, and people we go to sign our petition, using Firefox search engine, or other different none Google controlled search engines, are constantly having trouble for weeks to access to song up or to get the confirmation email from change.org to work at all, and some cannot even get the confirming email at all if they are using such as www.Proton.me email system no matter how many times they sign up to our petitions or click the said confirming email back to Change.org.

The error that keep coming up says the address at www.change.org is not recognised when they received the email from chnage.org to simply click the link to confirm they signed our petitions, and we even sent the message to change.org and they keep saying nothing wrong with the link sent us or to our petitions supporters, for some weeks now, until some of our petition supporters have not bothered to continue to try or sign up afresh after we meet them in the streets etc, so they are automatically deleted from our petitions list after 14 days which is not fair to us nor to change.org staff that take a voluntary fee to run the change.org petition site so they the staff would not block petitions' supporters, while Google their agent may block supporters if Google do not like our petitions.

Some people we know get the link via invitation from us or from change.org after finding our petitions themselves or via QR Code to sign up, and when they do get chnage.org email to click a link to activate back to change.org that they did sign our petitions. But now of late for week clicking the link have repeatedly resulted the same error saying the link from chanage.org is not recognised, repeatedly as if blocked by Firefox from reaching chnage.org servers, and then our private email with Proton.me, and other supporters at same www.proton.me, got a message back from Proton.me that said it seems that the error is a fault with Firefox search engine we use; while some that clicked from their Proton.me email reply box says they also then used Goggle.com or Chrome and have the same error message blocking their confirmation email reply back to change.org, so that now we and they using Firefox and Proton.me cannot get past the said error message to get change.org to automatically confirm their signed to our Petition as they are not appearing on the list of our Petitions' Support signature list, supposed to be confirmed on change, after they signed up to our change.org petitions.

We have contacted change.org to see if it’s their sent our to us and signers links and they said no, and said they tested it and said they try Google Chrome and it works, because Change.org and most of their Change.org users use Google Chrome, and then we did install and tried Google Chrome and it is still giving us the change.org page cannot recognised errors, so it cannot be Firefox's fault, and we installed Firefox again and it still did not work, and we installed other no Google Controlled Search engines like DUCK Duck Go and we still get the same error message.

Please check you Firefox servers to make sure it is not Firefox fault we keep getting the error - change.org is not recogniezed, so page is blocked from our proton.me email box via Firefox we prefer as our default search engine.

Is it that Firefox needs to now make sure Firefox Servers always recognise www.change.org and so to automatically clear the way for our www.proton.me email providers to use Firefox Search engine to always reach change.org, which we prefer to use Firefox as freedom of speech fighters, because of Google is playing censorship games worldwide because it has www carrier monopoly to secretly play with us or is the trouble we have now for Google to ambush us repeatedly so Google can to take us away from using free Firefox to only Google search engines?.

Yours sincerely

Lorna Douglas [email address] And [email address]

Archived 2 270