Prikaz označenih pitanja: Prikaži sva pitanja

Recaptcha Not Working in Firefox Specifically.

Recaptcha isn't working in Firefox. It works in Chrome, Opera, and Edge with no issues, it will either just go to a check mark or open the window with the pictures to cho… (pročitajte više)

Recaptcha isn't working in Firefox. It works in Chrome, Opera, and Edge with no issues, it will either just go to a check mark or open the window with the pictures to choose, on both regular pages and on the Google Recaptcha Demo site Google Recaptcha Demo site. But when I load a page that requires Recaptcha in Firefox, it just spins forever. It was working fine a few hours ago, and I didn't change any settings or anything in Firefox. I was filling out a job application and it worked fine, then I went to another job application and Recaptcha won't work at all, even on the Recaptcha Demo site.

I'm on version 125.0.3 (64-bit), on Windows 10. Not using a VPN or anything like that, just a standard Ethernet connection, with whatever Charter gives me.

Steps I've tried, none of which have helped:

1. Cleared Cookies. 2. Restart Browser. 3. Restart Computer. 4. Restart Modem and Router. 5. Opening Firefox in troubleshooting mode. 6. Ensured Firefox was up to date. 7. Reinstalling Firefox. 8. Turned Connection Settings to no proxy. 9. Turned off Enhanced Tracking Protection. (It's set on standard otherwise, and I didn't change it) 10. Release/Renew IP via Command Prompt.

I'm genuinely at a loss of what to do, after a couple of hours of searching around for solutions. I don't get how it just stopped working in the span of like ten minutes when I didn't change any settings or anything. Firefox is my main browser and it would be a tremendous pain to have to use another browser for any pages that require Recaptcha.

Any assistance or advice to solve this problem would be greatly appreciated!

Asked by coolman50002001 prije 16 sati

Last reply by raymi prije 3 minuta

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (pročitajte više)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Asked by Slouch prije 2 dana

Last reply by Slouch prije 14 minuta

  • Riješeno

captcha not working...never ends

On a couple of websites, but in particular Rogers.com, the captcha just never ends. It asks to click on all the bicycles, I click on them one at a time until no more app… (pročitajte više)

On a couple of websites, but in particular Rogers.com, the captcha just never ends. It asks to click on all the bicycles, I click on them one at a time until no more appear, hit verify, it brings up something else. It will do this dozens of times and just never ever end.

Switch over to Edge, does the same. Switched to chrome and it works fine. Has google done something to captcha to deny it working on other browsers?

I have checked to see firefox is up to date and it is. I have disabled all extensions/addons. I have run malware/virus scans. On the Rogers community forums there are all kinds of people having problems but there are no solutions on how to fix. Oddly (or not) the problems are similar...captcha won't work on Edge, Firefox but will work on Chrome.

Asked by Rye Encoke prije 3 mjeseci

Answered by zeroknight prije 3 mjeseci

  • Zaključano

Tineye worked great until i created a new account, now it won't work says "allow cookies' and I don't know how

PLEASE READ THOROUGHLY - Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until… (pročitajte više)

PLEASE READ THOROUGHLY - Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until now (as of yesterday). Now it won't search, a verify you're human window comes up, and I have to keep clicking squares, which I do - but then it says to allow cookies and start over. Well I don't want to allow cookies (Firefox-Mozilla kinda encourages using their tools to block cookies, which I much prefer), and I CANT FIND WHERE TO ALLOW (not yelling its just that I said this before and it wasn't noticed) cookies even if I did (I went to Firefox preferences all I could find was under privacy & security cross-site cookies but that did nothing) and I don't want to disable my VPN. Maybe I should mention that I just added or started a Mozilla account, as I have had immense trouble with my aol emails, and am trying to move everything over to a gmail account. My sign in to Firefox was the aol email, and I had to try (I thought I did it) add another account, which I think I did successfully. So it was right after that, that all this started. Help please! Thank you! I did get the following reply, saying to allow cookies (BUT I DON"T KNOW HOW OR WHERE TO DO IT) and something about a new browser profile and to stay out of my sync account, and I APOLOGIZE, but I have no clue what all that means. What is a broweser profile, what is a sync account and how do I stay out of it? I guess well I know i'm not too smart about this kinda stuff, so I apologize but I think I need detailed step by step what to do to fix this. I know thats a lot of typing, sorry.

Asked by PocketDan prije 1 sat

Last reply by NoahSUMO prije 26 minuta

Weird fonts Wing Dings??

I keep hitting sites where menus and selection boxes turn into unreadable Wing Dings? On W11 and cleared and rest the font cache in Windows and still repeatedly seeing th… (pročitajte više)

I keep hitting sites where menus and selection boxes turn into unreadable Wing Dings? On W11 and cleared and rest the font cache in Windows and still repeatedly seeing the issue?

Asked by Doug Sooley prije 1 sat

Last reply by Doug Sooley prije 35 minuta

reCAPTCHA no longer working ONLY on Firefox, tried everything!

Whenever i encounter a reCAPTCHA, and click "i am not a robot", the wheel keeps spinning and spinning and spinning. I never get to the screen where i have to verify image… (pročitajte više)

Whenever i encounter a reCAPTCHA, and click "i am not a robot", the wheel keeps spinning and spinning and spinning. I never get to the screen where i have to verify images or a check mark. Just started happening randomly.

I've spent hours searching. Tried every single solution-new profile, erased firefox and reinstalled, troubleshoot mode, firefox refresh, turned tracking protection off, changed network settings, reset wifi adapter, you name it i tried it. I need to get past reCAPTCHA's for work. Getting so frustrated. Please help!

One important point-the only other browser i have on my laptop is Microsoft edge and it' works perfectly on Edge!

Asked by wsandhu1 prije 3 sati

Last reply by wsandhu1 prije 36 minuta

McAfee Intrusions

Lately, when I'm on a website and click into an article to read, suddenly the McAfee anti-virus ad or whatever you call intrudes and takes over the browser page I'm on an… (pročitajte više)

Lately, when I'm on a website and click into an article to read, suddenly the McAfee anti-virus ad or whatever you call intrudes and takes over the browser page I'm on and won't allow me to navigate way or stop it unless I close the browser tab and/or navigate away from the page all together.

Why is this happening? Is it something in the my particular browser? If yes, how can I remove and prevent this from happening?

Is it something that is occurring on the server of the site I'm visiting? Should I notify them what is happening?

Any help and advice greatly appreciated. It is very annoying. I don't have McAfee installed and it's not a pop-up, it happens within the browser page itself.

Thank you,

Marty

Asked by Martin Brown prije 2 sati

Last reply by cor-el prije 36 minuta

ff pass words gone

hi can anyone tell me how to get my saved passwords back into ff. they got deleted somehow by Clean Disk app instructions ive found on web are for everything except wha… (pročitajte više)

hi can anyone tell me how to get my saved passwords back into ff. they got deleted somehow by Clean Disk app

instructions ive found on web are for everything except what i need thanks

Asked by bill prije 4 dana

Last reply by bill prije 39 minuta

Firefox hangs in news reader

The news reader (powered by Technavia) for the Tucson Daily Star starts OK but continually slows down and eventually Firefox hangs and is non responsive. It happens in d… (pročitajte više)

The news reader (powered by Technavia) for the Tucson Daily Star starts OK but continually slows down and eventually Firefox hangs and is non responsive. It happens in different places. The same news reader works OK in Edge or Chrome. Any idea how to trouble shoot this?

Mike Mulcahy

Asked by mike739 prije 41 minut

Boldfaced "S" does not print

When I view my bank statement in Firefox, everything appears fine, but when I print the statement, all occurrences of boldfce "S" on the printout are blank. This problem… (pročitajte više)

When I view my bank statement in Firefox, everything appears fine, but when I print the statement, all occurrences of boldfce "S" on the printout are blank. This problem does not occur with Google. Running macOS Catalina, all maintenance applied, Firefox is at 125.0.3.

Asked by TheOld Crab prije 21 sat

Last reply by TheOld Crab prije 44 minuta

Cannot get pass recaptcha

Hello, there seem to be a recaptcha issue - it was working yesterday, and today it doesn't. Here are the sites you can try to reproduce the issue: https://www.uniquega… (pročitajte više)

Hello,

there seem to be a recaptcha issue - it was working yesterday, and today it doesn't. Here are the sites you can try to reproduce the issue: https://www.uniquegardendecor.com/contact-us/ https://www.kbauthority.com/help.php?mode=update&section=contactus https://www.outsy.com/contact-us/ And it looks like it's only happening in the US. Firefox version: 125.0.3 (64-bit) Please advise

Asked by Marina prije 2 sati

Last reply by cor-el prije 45 minuta

Firefox can’t establish a connection to the server at wss://gateway.discord.gg/?encoding=json&v=9&compress=zlib-stream.

I've been trying to connect to discord for a while, left it on for 2 hours and hasnt loaded. when i opened the console log, all it said was "Firefox can’t establish a con… (pročitajte više)

I've been trying to connect to discord for a while, left it on for 2 hours and hasnt loaded. when i opened the console log, all it said was "Firefox can’t establish a connection to the server at wss://gateway.discord.gg/?encoding=json&v=9&compress=zlib-stream" all over. Please help.

Asked by uyhgjigy prije 4 sati

Last reply by zeroknight prije 55 minuta

thumder bird mail drafts folder

not sure if this is where i should be but i tried the Thunderbird help and got no answer. After the most recent Thunderbird up date and a Thunderbird install over e… (pročitajte više)

not sure if this is where i should be but i tried the Thunderbird help and got no answer. After the most recent Thunderbird up date and a Thunderbird install over existing one when i go to my drafts folder and click on any draft or save message in there i get a yellow bar at the bottom of the page that i have never seen before . Now i do not want recreate a new profile and lose all my contacts book marks add on etc. how do i remove that yellow bar in Thunderbird mail

Asked by Mary prije 1 dan

Last reply by david prije 56 minuta

Firefox 125.0.3 block submit with Google Recaptcha

After updating Firefox to Firefox 125.0.3, Google ReCaptcha2 stopped working on my sites (I use the invisible version). Then I checked the version from the official websi… (pročitajte više)

After updating Firefox to Firefox 125.0.3, Google ReCaptcha2 stopped working on my sites (I use the invisible version). Then I checked the version from the official website and it doesn’t work either.

I read about self = this on stackoverflow, but this also does not help on my sites. After clicking, nothing happens, and there is an error in the console.

Has anyone encountered this?

The same behavior here https://www.google.com/recaptcha/api2/demo, an error is displayed and loading... loading... loading.

Error in console is like: UncaughtObject { stack: "z<@https://www.gstatic.com/recaptcha/releases/WQcDpAcHn0sjM6ZiVkU8JwNH/recaptcha__ru.js:470:201\nH<@https://www.gstatic.com/recaptcha/releases/WQcDpAcHn0sjM6ZiVkU8JwNH/recaptcha__ru.js:258:...

from https://www.gstatic.com/recaptcha/releases/WQcDpAcHn0sjM6ZiVkU8JwNH/recaptcha__ru.js line 448:1

Tested on absolutely clean Firefox without plugins, with security turned off, without cookies and account.

When i start browsing from Holland IP via VPN the problem are solving. In Chrome, Edge ReCaptcha2 working fine.

Asked by Федор prije 5 sati

Last reply by wsandhu1 prije 59 minuta

Google ReCAPTCHA is not working on all websites

Google ReCaptcha is not working on literally all websites. Once I click on checkbox "I'm not a robot" It gets stuck on infinite loop. Although working on Mac OS in Firefo… (pročitajte više)

Google ReCaptcha is not working on literally all websites. Once I click on checkbox "I'm not a robot" It gets stuck on infinite loop. Although working on Mac OS in Firefox and Chrome or any other browsers. The issue is primarily with Windows version

I already tried clearing cookies, cache, disabling Tracking Protection, adding sites to DNS white list

Environment: OS Windows 11 Version 23H2, Firefox 125.0.3 For testing used: https://www.google.com/recaptcha/api2/demo

Asked by Maxim L prije 11 sati

Last reply by wsandhu1 prije 1 sat

After automatic update/installation of Firefox 125.0.3 recaptcha does not work on any website requiring this

I have tried all fixes suggested by others reporting similar problems with previous versions, but this was noticeable for me yesterday afternoon right after some downtime… (pročitajte više)

I have tried all fixes suggested by others reporting similar problems with previous versions, but this was noticeable for me yesterday afternoon right after some downtime and the latest version (for me) of Firefox was installed. Every time I try to use a site requiring recaptcha, the wheel spins and I get no choice to log in. I've cleared cookies and my cache, refreshed Firefox, etc. Nothing works.

Asked by sgabardi prije 6 sati

Last reply by wsandhu1 prije 1 sat

recaptcha

Today May 1, I noticed that any website that shows a recaptcha checkbox, including the google recaptcha demo (https://www.google.com/recaptcha/api2/demo) only shows an in… (pročitajte više)

Today May 1, I noticed that any website that shows a recaptcha checkbox, including the google recaptcha demo (https://www.google.com/recaptcha/api2/demo) only shows an infinite spinner in firefox v125.0.3. I've tried the same sites in chrome and edge and the recaptcha works fine. In FF, I have cleared my cache, disabled tracking protection, disabled anti-virus and tried troubleshooting mode - still get the infinite spinner. Last week, I had no problems with recaptcha.

Asked by bill340 prije 18 sati

Last reply by zeroknight prije 1 sat