Canadian English has Missing Definitions

I was excited to see that Firefox had support for Canadian English, however the dictionary seems to be missing numerous words and I get spelling errors for words like "la… (مزید پڑھیں)

I was excited to see that Firefox had support for Canadian English, however the dictionary seems to be missing numerous words and I get spelling errors for words like "lasagna."

Is this a bug or is the dictionary just barely populated with words and missing a tremendous amount?

Asked by Gerrit Kat 3 دن پہلے

Last reply by Gerrit Kat 28 منٹ پہلے

Recieving 403 errors in firefox but nowhere else

I often receive a 403 error when using Firefox Every time, before this happens, I get the unsafe website warning and then the 403 error when I continue anyway I am usi… (مزید پڑھیں)

I often receive a 403 error when using Firefox Every time, before this happens, I get the unsafe website warning and then the 403 error when I continue anyway


I am using the latest version at the time of writing These errors only occur on my desktop PC I have tried to replicate this issue on both my phone (Android) and another laptop(Windows 11) but all the websites work normally on there.

I have tried the following, none of which have any effect:

  • Clearing cookies
  • using Troubleshoot mode
  • Restarting
  • Changing Useragent
  • Using "Forget about this site"

The following do fix the issue

  • Using a VPN
  • Using Google Chrome
  • Running Firefox in another profile

Going through the privacy and security tab and reseting all the settings sometimes works but only temporarily

The following are a few websites where the issue occurs

  1. https://kdice.com/
  2. https://latinitium.com/
  3. https://theysaidso.com/
  4. https://opensource.org/
  5. httpe://obsidian.rocks/

Asked by Thomas Harris 54 منٹ پہلے

Tabs on bottom

Well looks like they did it to us again. My tabs are back on top again and need to put them below where I am a lot of other users like our tabs! Below is my current c… (مزید پڑھیں)

Well looks like they did it to us again. My tabs are back on top again and need to put them below where I am a lot of other users like our tabs!

Below is my current coding if anyone knows how to adjust it to force the tabs to the bottom again would be much appreciated!!

Current version I am running of FF is 133.0

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* IMPORTANT Get window_control_placeholder_support.css Window controls will be all wrong without it. Additionally on Linux, you may need to get: linux_gtk_window_control_patch.css Use tabs_on_bottom_menubar_on_top_patch.css if you have menubar permanently enabled and want it on top

  • /
  1. toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
  2. TabsToolbar > .titlebar-buttonbox-container{
 position: fixed;
 display: block;
 top: 0px;
 right:0;
 height: 40px;

} @media (-moz-gtk-csd-reversed-placement),

      (-moz-platform: macos){
 .titlebar-buttonbox-container{ left:0; right: unset !important; }

} @supports -moz-bool-pref("userchrome.force-window-controls-on-left.enabled"){

 .titlebar-buttonbox-container{ left:0; right: unset !important; }

}

root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 32px }
  1. toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

  1. titlebar{
 -moz-box-ordinal-group: 2; /* Fx <112 compatibility */
 order: 2;
 -moz-appearance: none !important;
 --tabs-navbar-shadow-size: 0px;
 --uc-menubar-vertical-overlap: 19px; /* for hide_tabs_with_one_tab_w_window_controls.css compatibility */

} /* Re-order window and tab notification boxes */

  1. navigator-toolbox > div{ display: contents }

.global-notificationbox,

  1. tab-notification-deck{
 -moz-box-ordinal-group: 2; /* Fx <112 compatibility */
 order: 2;

}

  1. TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

  1. navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){

 .titlebar-button{
   -moz-box-orient: vertical; /* Fx <112 compatibility */
   flex-direction: column;
 }

}

/* At Activated Menubar */

root:not([chromehidden~="menubar"], [sizemode="fullscreen"]) #toolbar-menubar:not([autohide="true"]) + #TabsToolbar > .titlebar-buttonbox-container {
 display: block !important;

}

  1. toolbar-menubar:not([autohide="true"]) > .titlebar-buttonbox-container {
 visibility: hidden;

}

/* These exist only for compatibility with autohide-tabstoolbar.css */ toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

  1. navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }
  2. TabsToolbar > .titlebar-buttonbox-container{ visibility: visible }
  3. navigator-toolbox:not(:-moz-lwtheme){ background-color: -moz-dialog }

/* Uncomment the following if you want bookmarks toolbar to be below tabs */ /*

  1. PersonalToolbar{
 -moz-box-ordinal-group: 2;
 order: 2;

}

  • /



/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */ /* Only really useful if menubar is ALWAYS visible */

root:not([sizemode="fullscreen"]){ --uc-window-control-width: 0px !important }
root{
  /* height if native titlebar is enabled, assumes empty menubar */
 --uc-menubar-height: 20px;

}

root[tabsintitlebar]{
 /* height when native titlebar is disabled, more roomy so can fit buttons etc. */
 --uc-menubar-height: 29px;

}

root:is([sizemode="fullscreen"],[chromehidden~="menubar"]){
 --uc-menubar-height: 0px;

} /* Since menubar is statically at top, remove fake drag-space that might be set by window_control_placeholder_support.css */

root:not([sizemode="fullscreen"]) #nav-bar{ border-inline-width: 0 }
  1. navigator-toolbox{
 -moz-window-dragging: drag;
 padding-top: var(--uc-menubar-height) !important;

}

/* Remove window dragging from notification boxes */

  1. tab-notification-deck,

.global-notificationbox{

 -moz-window-dragging: no-drag;

}

  1. toolbar-menubar{
 position: fixed;
 display: flex;
 top: 0px;
 height: var(--uc-menubar-height);
 width: 100%;
 overflow: hidden;

}

  1. toolbar-menubar > .titlebar-buttonbox-container{ height: 100%; order: 100; }
  1. toolbar-menubar > [flex]{ flex-grow: 100; }
  2. toolbar-menubar > spacer[flex]{
 order: 99;
 flex-grow: 1;
 min-width: var(--uc-window-drag-space-post,20px);

}

  1. toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }
root:not([sizemode="fullscreen"]) #toolbar-menubar.browser-toolbar > .titlebar-buttonbox-container{
 visibility: visible;

}

root:not([chromehidden~="menubar"], [sizemode="fullscreen"]) #TabsToolbar#TabsToolbar#TabsToolbar > .titlebar-buttonbox-container {
 display: none !important;

}

Asked by scottish2 1 گھنٹہ پہلے

When the latest version is released, why does the process become slow or freeze until I press the update button and restart the device?

When the latest version is released, if I continue browsing without pressing the update button, the process suddenly becomes slow or freezes until I restart the device. W… (مزید پڑھیں)

When the latest version is released, if I continue browsing without pressing the update button, the process suddenly becomes slow or freezes until I restart the device. Why is this? There are no problems until the update arrives, but as soon as the update arrives, the device becomes unstable, and after the update, it works as if nothing happened.

 I am using Google Translate, so the nuances may be different.

Asked by kudo4wd 1 گھنٹہ پہلے

Last reply by kudo4wd 1 گھنٹہ پہلے

search from location bar takes over existing (new, blank) tab instead of opening new one

I have the setting browser.search.openinnewtab and also browser.urlbar.openintab both set to true, but when I type a search into either the address bar or the search bar … (مزید پڑھیں)

I have the setting browser.search.openinnewtab and also browser.urlbar.openintab both set to true, but when I type a search into either the address bar or the search bar next to it, instead of opening a new tab, it puts that search into an already-open blank tab, if one is already open.

I often use blank tabs to separate my currently open tabs into groups by topic and whatnot, so it's incredibly annoying when the search bar takes over one of my adhoc 'separators' instead of opening a new tab like I want it to.

Is there a setting to force the search bar to always open a brand new tab, even if 'new tabs' are already open??

Asked by drysdan 2 گھنٹہ پہلے

Search bar taking up entire screen

My search bar is taking up the entire screen when I try to interact with it. When I go to search stuff, then it returns to the normal style. Then, when I try to interact … (مزید پڑھیں)

My search bar is taking up the entire screen when I try to interact with it. When I go to search stuff, then it returns to the normal style. Then, when I try to interact with the page I'm on, it absorbs the screen.

Asked by Eddie Lampert 2 گھنٹہ پہلے

Webpage Scaling

I never feel like webpages scale properly when I visit them. There is always content left off screen or I have to zoom out so much that the text is too small to read. Is … (مزید پڑھیں)

I never feel like webpages scale properly when I visit them. There is always content left off screen or I have to zoom out so much that the text is too small to read. Is there a setting I can change to affect this?

This webpage is particularly egregious: https://www.desktopmetal.com/products/shop

My Firefox Nightly version is: 135.0a1 (2024-11-26) (aarch64). My computer is a: MacBook Air (15-inch, M2, 2023) running macOS Sequoia (Version 15.1). I have been having these issues for a long time regardless of computer.

I have attached a picture of the labs settings I have enabled but I cannot see why any of them would affect this.

Asked by realCrowman 2 گھنٹہ پہلے

Review Checker

The latest update to Firefox includes a new Review Checker. It is activated by pressing the price tag in the address bar when on a specific product page in Amazon, etc. … (مزید پڑھیں)

The latest update to Firefox includes a new Review Checker. It is activated by pressing the price tag in the address bar when on a specific product page in Amazon, etc. This price tag does not appear on my laptop when I am on a product page. Is there an activation method I am not using? How do I get the price tag to appear?

Asked by Tim Weidman 3 گھنٹہ پہلے

Firefox and Chrome crash eachother

I've asked about this before but got no help Firefox is my browser of choice. Occasionally, I find in necessary to use Chrome. The vast majority of time, when are bo… (مزید پڑھیں)

I've asked about this before but got no help Firefox is my browser of choice. Occasionally, I find in necessary to use Chrome.

The vast majority of time, when are both are active at the same time, one or both crash, like today. Firefox closed abruptly, then the crash report appeared. I have the crash report. Chrome froze up, and had to be shut down in Task Manager.

It only occurs in this scenario. Rarely does Firefox crash otherwise.

Can someone please advise where to go to get help?

Asked by noel_envode 1 ہفتہ پہلے

Last reply by noel_envode 4 گھنٹہ پہلے

Unable to Connect

Hello, I have uninstalled and reinstalled firefox twice using two different ways found on the community/mozilla website through chrome and I am still having trouble. It s… (مزید پڑھیں)

Hello, I have uninstalled and reinstalled firefox twice using two different ways found on the community/mozilla website through chrome and I am still having trouble. It started a couple weeks ago when I received a notice at the top right hand of my firefox page for an update. I tried and it shows as Unable to connect. I tried various ways to connect with mozilla with no luck. I uninstalled, restarted my computer and reinstalled twice and still having the same issue. I lost all my plug ins and add ons after the reinstall and now I can't not even get them and can no longer sign into my firefox account through firefox. Anything that has to do with mozilla I can not reach unless I use chrome which I don't like doing. I have searched the community and nothing seems to help and I even submitted a help question in help community but no responders. Anything which I found addressing Unable to Connect was years old anyway. I can only assume it had to do with the update pop up which I never got to do and assumed a refresh or a reinstall would take care of it but it hasn't. What can I do? Thank You, Charyl

Asked by Charyl 3 گھنٹہ پہلے

How to stop search bouncing up to urlbar?

Got a new W11 computer and I know I've stopped it before. I found https://support.mozilla.org/en-US/questions/1284577 on a search, but that didn't work and the answer is… (مزید پڑھیں)

Got a new W11 computer and I know I've stopped it before.

I found https://support.mozilla.org/en-US/questions/1284577 on a search, but that didn't work and the answer is archived so I can't comment on it.

Where are the valid instructions?

Also, should I undo that? What other things might that now be doing?

Asked by ithinktfiam 3 گھنٹہ پہلے

Memory leak when visiting ssa.gov

I believe there is a memory leak (or memory growth) bug in Firefox 133.0 on Windows 10. It's site-specific. I am trying to login to my account at https://www.ssa.gov/, … (مزید پڑھیں)

I believe there is a memory leak (or memory growth) bug in Firefox 133.0 on Windows 10. It's site-specific. I am trying to login to my account at https://www.ssa.gov/, and it never actually gets to the login prompt. Using the Windows task manager, I can see the RAM usage keeps increasing, until it nears the 12 GB installed RAM capacity, at which time I kill the firefox process. I'd say this is a bug in ssa.gov, except the problem does not occur with the google chrome browser.

To provide further detail, I go to site https://www.ssa.gov/, and click on the "sign in" button. That takes me to the page where you choose the login method (id.me or login.gov) and I choose "id.me". It takes me to the "you are leaving Social Security's website " message, which is still on the ssa.gov website. At that point, firefox memory usage starts to increase, as shown in task manager. The browser never advances to the next page, but main memory usage keeps going up. This goes on for about 30 seconds before I have to kill the firefox process.

Asked by bwffx 3 گھنٹہ پہلے

Updated Firefox isn't working for email for daily newspaper. There is a lot of distortion.

What can I do to have Firefox be compatible with my emails. When I open an email for the local newspaper, the news paper is distorted and enlarged 200% and asks me to si… (مزید پڑھیں)

What can I do to have Firefox be compatible with my emails. When I open an email for the local newspaper, the news paper is distorted and enlarged 200% and asks me to sign in. Everything was fine until the most recent Firefox update.

I want to remove the recent update which results in Firefox and some of my email links to be incompatible. The newspaper link works on Safari but I do most of my activity on Firefox.

Also, the email link works fine on Google Chrome. But I hate Google Chrome and don't want to use it. I would prefer that the Firefox browser be compatible with sites such as my local newspaper.

Asked by Claudia MacLeod 4 گھنٹہ پہلے

Clear cache pop-up?

Why do I keep getting pop-ups that 500% zoom in on the page with a message asking for me to clear cache? I have cleared my cache multiple times and restarted my computer … (مزید پڑھیں)

Why do I keep getting pop-ups that 500% zoom in on the page with a message asking for me to clear cache? I have cleared my cache multiple times and restarted my computer many times as well, but it is still been a recurring problem for the past few days. It has been happening on every web page I visit, and even when there is no data to be cleared. Any information on how to fix this problem would be greatly appreciated, thank you.

Asked by Ryan O'Connor 5 گھنٹہ پہلے

Last reply by Ryan O'Connor 5 گھنٹہ پہلے

Title: Firefox Unresponsiveness with PCI-E 3.0 SSDs

I've encountered a bug in Mozilla Firefox where the browser becomes unresponsive when using Solid State Drives (SSDs), specifically PCI-E 3.0 SSDs with a 960GB M.2-110mm … (مزید پڑھیں)

I've encountered a bug in Mozilla Firefox where the browser becomes unresponsive when using Solid State Drives (SSDs), specifically PCI-E 3.0 SSDs with a 960GB M.2-110mm drive https://serverorbit.com/solid-state-drives-ssd/pci-e3-0-ssd/960gb-m-2-110mm. The issue seems to occur when multiple tabs are open, and the browser struggles to keep up with the data processing. Has anyone else experienced this issue, and are there any known fixes or workarounds?

Asked by Jack Hicks 5 گھنٹہ پہلے

Unable to View/Print FedEx Invoices

FedEx updated their website and you can't see the legacy site anymore. I am not able to view/print FedEx invoices on Mozilla - but it works on Microsoft Edge. Why can't I… (مزید پڑھیں)

FedEx updated their website and you can't see the legacy site anymore. I am not able to view/print FedEx invoices on Mozilla - but it works on Microsoft Edge. Why can't I view/print from Mozilla?

Thanks for your help!

Asked by Jenturnr 5 گھنٹہ پہلے

V133 system color no longer shown at top

As of v133 the system color is now longer shown at the top of the page. Everything at the top is now gray which I find to be very irritating. Please return the system col… (مزید پڑھیں)

As of v133 the system color is now longer shown at the top of the page. Everything at the top is now gray which I find to be very irritating. Please return the system color functionality.

Asked by rw330i 6 گھنٹہ پہلے