Primaey email hacked

Please someone help me with this. My primary email has been breeched and because I was honest with the service --instead of just saying I need help resetting my password.… (read more)

Please someone help me with this. My primary email has been breeched and because I was honest with the service --instead of just saying I need help resetting my password. Thay are asking me to send them a copy of my drivers' license and a photo "selfie" of myself to recover my account.

This is where I draw the line -- all invasions of privacy we have learned to live with but not this -- I could give them the transaction ID from my last Payment from Paypal period -- but that was not good enough. If I was being deceitfull I could easily provide the crdentials they ask for and it could all be fake; so I told them to get lost as I was paying for the Premium service anyway. I can contintue to use that as my ID but sonner or later someone is going to want to send me a code there and I can't retrieve it. Tonight they did not ask so I was able to get in here.

Everybody has a place to change your password but few have a place to change your sign-in ID. If I can get back into Firefox with a new ID and set 2 step validation I shouls be okay as faras the average user gors. The other option that I know of is to stary a new Firefox account. I alread have a lot of people and business's that I have to get my new email to.

Thanks To Anyone with any ideas.

Sincerely Paul

Asked by Paul Ellis 2 hours ago

Cannot add Search Engines to Firefox

I am trying to add custom search engines to Firefox. I have tried the steps given in the forum thread https://support.mozilla.org/en-US/questions/1212596. However when … (read more)

I am trying to add custom search engines to Firefox. I have tried the steps given in the forum thread https://support.mozilla.org/en-US/questions/1212596.

However when I try to go and add the search engine as per the article given above I do not get the option. Please see the attached screen shot for more details. I do not want to add an extension or a plugin, but just manually have the option of adding search engines.

Asked by ixian 2 hours ago

Last reply by ixian 2 hours ago

Firefox extremely slow to load pages or connect to Web sites after startup - Follow-Up

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last proc… (read more)

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last process could really fix the issue. It didn't, not always. Over the years, there have been times when the issue would still pop up, but not as often as before (2022 and earlier).

I have a feeling that during an issue, FF is having difficulty setting up shop after starting up. Consequently, it is spending more time before it could become prepared to connect to the Net. I've come up with another "solution," which is deleting (or moving out) xulstore.json in the profile folder after exiting or before starting FF. You can create a batch command or script to execute the process.

So far, FF is connecting immediately after startup.

Asked by mobilesuit 2 weeks ago

Last reply by mobilesuit 2 hours ago

Firefox UI freezes when clicking the addressbar.

I am using Firefox 125 in Windows 11. And this just happens recently. Sometimes, quite frequently, when I click the addressbar wanting to input or select a new address. … (read more)

I am using Firefox 125 in Windows 11. And this just happens recently.

Sometimes, quite frequently, when I click the addressbar wanting to input or select a new address. The Firefox UI freezes (before the dropdown list of addresses is shown). The video/audio/other effects are still working, and from task manager, it does not cost more CPU/mem than usual. But it does not response to key press or mouse action. All I can do (that I know of) is killing the processes. The problem does not seem related to "current" webpage I am browsing. And I have not installed new addons for a few months.

Any idea what should I look into?

Asked by Magicloud 2 days ago

Last reply by jscher2000 - Support Volunteer 3 hours ago

Problem with Mozilla Firefox webpage access

Hello, Mozilla Community I'm contacting you to ask for help with a problem I'm having with Mozilla Firefox when attempting to visit the website https://canuckletoday.ca. … (read more)

Hello, Mozilla Community I'm contacting you to ask for help with a problem I'm having with Mozilla Firefox when attempting to visit the website https://canuckletoday.ca. The website won't load, and I'm not sure if that's because of a technical glitch, incompatibility with certain browsers, or anything the browser may be obstructing.

Has anyone else had this problem or has advice on how to fix it? I've tried removing extensions and cleaning the cache on my browser, but the issue still exists.

Any advice or tips on how to navigate the website more easily would be much valued. I'm grateful for your support in advance.

Asked by Awnex Baylor 14 hours ago

Last reply by jonzn4SUSE 4 hours ago

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (read more)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Asked by Slouch 4 hours ago

Mozilla is blocking needed websites

When I try to use needed tools on websites, Mozilla is blocking the page from opening. USPS will not allow me to track a package. When I enter the tracking number, the pa… (read more)

When I try to use needed tools on websites, Mozilla is blocking the page from opening. USPS will not allow me to track a package. When I enter the tracking number, the page just sits on white and the search just spins

Asked by Ann Pride 9 hours ago

Last reply by jonzn4SUSE 4 hours ago

I am unable to sync my Meta Quest 2 FireFox bookmarks and data with my PC Firefox browser

I am unable to sync my Meta Quest 2 FireFox bookmarks and data with my PC Firefox browser I press "sync" on VR but nothing happens. I am signed in under the same account … (read more)

I am unable to sync my Meta Quest 2 FireFox bookmarks and data with my PC Firefox browser I press "sync" on VR but nothing happens. I am signed in under the same account for both devices

Asked by XX77 4 hours ago

New tabe opens to blank page not my home page

New tab opens to blank page and not my home page, which is Google. I have been to setting and went to the drop down box for tab settings but it only gives me an option to… (read more)

New tab opens to blank page and not my home page, which is Google. I have been to setting and went to the drop down box for tab settings but it only gives me an option to make firefox my home page or a blank page. I want Google to be what appears in my new tab when I click on the little + isgn.

Asked by Matt C 5 hours ago

Icon of Firefox Multi-Account Containers won't show up on top of screen

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browse… (read more)

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browser the icon on the top right of the screen just won't show up. Don't know what I've been doing wrong...? How can I access the container settings someway else? I've made changes to my FF settings in regards to privacy via the recommendation from Sun Knudsen but don't really see an issue here. Thanks in advance!

macOS 10.15.7, Firefox 125.0.3

Asked by Chrstph 16 hours ago

Last reply by cor-el 7 hours ago

Buttons don't always work.

Just in the last few weeks, "buttons" on web sites do not work in Firefox, but work fine in Chrome. Example: https://www.mealtrain.com/users/sign_in/ The sign-in butto… (read more)

Just in the last few weeks, "buttons" on web sites do not work in Firefox, but work fine in Chrome. Example: https://www.mealtrain.com/users/sign_in/ The sign-in button does nothing in Firefox, yet works fine in Chrome. V. 125.0.3, Windows 10.

Asked by mhdavisjr 1 day ago

Last reply by cor-el 7 hours ago

Credit card autofill stopped working.

Recently firefox stopped filling in my credit card information. 1. On a website asking for a credit card click on the credit card number box. 2. Choose the car from the… (read more)

Recently firefox stopped filling in my credit card information. 1. On a website asking for a credit card click on the credit card number box. 2. Choose the car from the popup. 3. Popup disappears but nothing is filled in on the website form. 4. Use Google Pay or PayPal to purchase.

This used to work.

Firefox version 125.0b9 (64-bit) Ubuntu 22.04 Firefox installed from the Mozilla PPA - ppa:mozillateam/firefox-next

Asked by michael.sez 7 hours ago

Autofill login password, 2-factor codes

Unlike Safari, Firefox doesn't autofill passwords or 2-factor codes. Please implement these features or tell me how to get them to work. MacOS 14.4.1 Thank you, Steve … (read more)

Unlike Safari, Firefox doesn't autofill passwords or 2-factor codes. Please implement these features or tell me how to get them to work. MacOS 14.4.1 Thank you, Steve

Asked by stronick 15 hours ago

Last reply by cor-el 8 hours ago

  • Solved

Firefox View Open Tabs is EMPTY!

Firefox View Open Tabs is my favorite feature. I (used to) use it daily, but now, even though I have NUMEROUS windows (over 40) and multiple tabs in many of those windows… (read more)

Firefox View Open Tabs is my favorite feature. I (used to) use it daily, but now, even though I have NUMEROUS windows (over 40) and multiple tabs in many of those windows, View Open Tabs is completely empty. I'd very much like to restore that 'index' without losing all those pages/tabs (it's my reading & ToDo list).


Sometime recently, I found it using gobs of CPU even though Javascript was (and still is) disabled, so I found the top CPU process and killed it. Instead of a single page going blank, Firefox crashed. Sometime after that I noticed that View Open Tabs was no longer populating. Maybe that contributed or instigated the dysfunction?

Asked by darkskyanarchy 1 day ago

Answered by darkskyanarchy 9 hours ago

Firefox gets lost

Firefox goes to eBay Portugal instead of eBay USA. In order to complete a specific task, I had to use Edge browser to get there. Why does it do that? How do I fix … (read more)

Firefox goes to eBay Portugal instead of eBay USA. In order to complete a specific task, I had to use Edge browser to get there. Why does it do that? How do I fix it?

Asked by WTC71 16 hours ago

Last reply by jscher2000 - Support Volunteer 8 hours ago

Can no longer login to webmail on firefox, but I can login using MS Edge.

I can no longer login to my webmail account using firefox, but I CAN login using MS Edge. I obtained a new ISP and set up a new email account. I was able to access the we… (read more)

I can no longer login to my webmail account using firefox, but I CAN login using MS Edge. I obtained a new ISP and set up a new email account. I was able to access the webmail account for about a month with Firefox. Then a few days a age, it just stopped: When entering valid credentials, the login page just refreshes (without errors) and doesn't continue to the webmail inbox any longer. So I thought I'd try a different browser and I used MS Edge. The valid credentials get me into the webmail inbox using Edge, but no longer works in Firefox. Any ideas what happened?

Asked by rg.powers 10 hours ago

Last reply by jscher2000 - Support Volunteer 9 hours ago

  • Locked

Autofill passwords/TF codes

Locking this thread, please continue here: [/questions/1446495] Unlike Safari, Firefox doesn't autofill passwords or 2-factor codes. Please implement these features or te… (read more)

Locking this thread, please continue here: [/questions/1446495]
Unlike Safari, Firefox doesn't autofill passwords or 2-factor codes. Please implement these features or tell me how to get them to work. MacOS 14.4.1 Thank you, Steve

Asked by stronick 15 hours ago