Showing questions tagged: اعرض كل الأسئلة
  • المُؤرشفة

FF uses all 4 GB RAM

FF uses all memory. I start computer. Start FF to blank page. No Internet connection. No other programs running. Ran memtest before - all Crucial RAM good. If I leave FF … (read more)

FF uses all memory. I start computer. Start FF to blank page. No Internet connection. No other programs running. Ran memtest before - all Crucial RAM good. If I leave FF on, doing nothing all RAM will be used. Linuxmint 20.3, FF 100. Does this happen with Windows or Mac?

Asked by borgward 1 year ago

Last reply by Tan Chee Keong 1 year ago

  • المُؤرشفة

unable to post with V 100.0.1 (64 bit)

After updating to V 100.0.1 I have discovered that I am unable to post to 2 different message boards that I had no issues with before. Is there some parameter that has ch… (read more)

After updating to V 100.0.1 I have discovered that I am unable to post to 2 different message boards that I had no issues with before. Is there some parameter that has changed that is prohibiting me from uploading text and/or images? I am having no problem if I use Microsoft Edge but I much prefer working with Firefox.

Asked by sp5001 1 year ago

Last reply by FredMcD 1 year ago

  • المُؤرشفة

Why my code work fine on chrome but not firefox?

Here is my code: <html> <head> <meta charset="utf-8"> <style> .fullCard, .lowerHalfCard, .upperHalfCard, .fullCard-after, .l… (read more)

Here is my code:

<html>
 <head>
  <meta charset="utf-8">
  <style>
   .fullCard,
   .lowerHalfCard,
   .upperHalfCard,
   .fullCard-after,
   .lowerHalfCard-after,
   .upperHalfCard-after {
     background-color: inherit;
     border-radius: 10px;
     height: 100%;
     width: 100%;
     position: absolute;
     
     align-items: center;
     display: flex;
     justify-content: center;
     vertical-align:middle;
   }
  
   .fullCard-after::after,
   .upperHalfCard-after::after{
     content: "";
     display: block;
     position: absolute;
     height: 4px;
     background-color: inherit;
     width: 100%;
     top: calc(50% - 2px);
   }
   .lowerHalfCard-after::after{
     content: "";
     display: block;
     position: absolute;
     height: 4px;
     background-color: inherit;
     width: 100%;
     top: calc(50% - 2px);
   }
   .lowerHalfCard,
   .lowerHalfCard-after{
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
   }
   .upperHalfCard,
   .upperHalfCard-after{
     clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
   }

   .splitFlap {
     background-color:black;
     box-sizing: border-box;
     border-radius: 10px;    
     width: 100px;
     height: 150px;
     position: relative;    
   }

   .rotate0to90 {
     animation-name: r0to90;
   }

   .rotate90to0 {
     animation-name: r90to0;
   }

   .rotate0to_90 {
     animation-name: r0to_90;
   }

   .rotate_90to0 {
     animation-name: r_90to0;
   }

   .rotate0to90,
   .rotate90to0,
   .rotate0to_90,
   .rotate_90to0 {
     animation-duration: 0.3s;
     animation-fill-mode: forwards;
   }

   @keyframes r0to90 {
     from {
    transform:rotateX(0deg);
     }

     to {
    transform: rotateX(90deg);
     }
   }

   @keyframes r90to0 {
     from {
    transform: rotateX(90deg);
     }

     to {
    transform: rotateX(0deg);
     }
   }

   @keyframes r0to_90 {
     from {
    transform: rotateX(0deg);
     }

     to {
    transform: rotateX(-90deg);
     }
   }

   @keyframes r_90to0 {
     from {
    transform: rotateX(-90deg);
     }

     to {
    transform: rotateX(0deg);
     }
   }

   .transform0to_90 {
     transform: rotateX(-90deg);
   }

   .transform0to90 {
     transform: rotateX(90deg);
   }
   .hide{
    display:none
   }
   .zIndex2 {
     z-index: 2;
   }

   .zIndex4 {
     z-index: 4;
   }

   .zIndex10 {
     z-index: 10;
   }
   .blue{
      background-color: blue
   }
   .green{
      background-color: green
   }
   .red{
      background-color: red
   }
   .orange{
     background-color: orange
   }
  </style>
  <script>
   let baseDiv,lowerDiv,middleDiv,upperDiv;
   document.addEventListener("DOMContentLoaded",()=>{
    baseDiv=document.getElementById("base");
    lowerDiv=document.getElementById("lower");
    middleDiv=document.getElementById("middle");
    upperDiv=document.getElementById("upper");
   });
   let backward=()=>{
       middleDiv.innerHTML=baseDiv.innerHTML;
    lowerDiv.classList.add("rotate0to90");
    middleDiv.className="upperHalfCard-after transform0to_90 zIndex4";
   }
   let forward=()=>{
    middleDiv.innerHTML=baseDiv.innerHTML;
    upperDiv.classList.add("rotate0to_90");
    middleDiv.className="lowerHalfCard-after transform0to90 zIndex4";
   }
   
   let upperHandler=()=>{
    middleDiv.classList.add("rotate90to0");
    upperDiv.classList.replace("zIndex4","zIndex2");    
   }
   let lowerHandler=()=>{
    lowerDiv.classList.replace("zIndex4","zIndex2");
    middleDiv.classList.add("rotate_90to0");    
   }
   let middleHandler=()=>{
    upperDiv.innerHTML=baseDiv.innerHTML;
    lowerDiv.innerHTML=baseDiv.innerHTML;
    middleDiv.className="hide";
    upperDiv.className="upperHalfCard-after zIndex4";
    lowerDiv.className="lowerHalfCard-after zIndex2";
   }
  </script>
 </head>
 <body>
  <div class="splitFlap">
   <div 
    id="base" 
    class="fullCard-after zIndex2">
    <img src="img/1_100.png">
   </div>
   <div 
    class="upperHalfCard-after zIndex4"
    id="upper"
    onAnimationEnd="upperHandler()">
    <img src="img/0_100.png">
   </div>
   <div 
    id="middle"
    class="hide"
    onAnimationEnd="middleHandler()">
   </div>
   <div
    class="lowerHalfCard-after zIndex2" 
    id="lower"
    onAnimationEnd="lowerHandler()">
    <img src="img/0_100.png">
   </div>
  </div>
  <p>
   <button onClick="forward()">
     +
   </button>
   <button onClick="backward()">
    -
   </button>
   <button onClick="setHinge()">Set Hinge</button>
  </p>
 </body>
</html> 

I am creating a split-flap. It works fine in Chrome, but in firefox, during the second rotation period, it is not smooth as in chrome. How can I fix it?

Asked by knvbhk 1 year ago

Last reply by cor-el 1 year ago

  • المُؤرشفة

Searching from address bar does not work

I am using Firefox version 100.0.1 (64-bit) and whenever I try to search in the search bar it will not provide me with any search results. I stays on the same page it was… (read more)

I am using Firefox version 100.0.1 (64-bit) and whenever I try to search in the search bar it will not provide me with any search results. I stays on the same page it was on before I hit enter and the address for that website reappears. If I click on the drop down menu and select a website, it will take me to that website, unless the website is Google.

Asked by anthony.reed.mt 1 year ago

Last reply by cor-el 1 year ago

  • المُؤرشفة

Firefox isn't loading google fonts on macbook pro and iMac

Hi. I've been having this problem with my iMac for sometime, but now it's affecting my Macbook Pro, as well. Both machines are 2015, running OS 10.15.7. They have probl… (read more)

Hi. I've been having this problem with my iMac for sometime, but now it's affecting my Macbook Pro, as well. Both machines are 2015, running OS 10.15.7.

They have problems loading webfonts (I get the annoying question marks). I tried creating a new test user, and the issue persisted. Any ideas on what I should do?

Thanks!

Asked by jack108 1 year ago

Last reply by cor-el 1 year ago

  • المُؤرشفة

Sorry. We’ve locked your account. A comedy of errors.

Hi Firefox, thanks for a great browser. Could you please help unlocking the account for [REDACTED BY MODERATOR] I was busy logging in to Firefox (today's update) using … (read more)

Hi Firefox, thanks for a great browser.

Could you please help unlocking the account for [REDACTED BY MODERATOR]

I was busy logging in to Firefox (today's update) using my account and wished to store my login info, but the link upon login was a long useless address specific to the post-login screen and related to adding more devices. I opened a new tab but this was, apparently, a sticky login and the new tab was logged in as well. I logged out of that tab with the obvious (hindsight) effect of interrupting the previous tab/s.

Long story short, the immediate effect was the message in the subject line of this mail. Firefox locked my account and I need it unlocked.

Thanks for your trouble. Kind regards Jacques


[Personal information removed by moderator. Please read Mozilla Support rules and guidelines, thanks.]

Asked by jaak0226 2 years ago

Last reply by Chris Ilias 2 years ago

  • المُؤرشفة

Many common words missing in FireFox spell checker

I once found a live bug opened for this, but I don't find it anymore. The spell checking dictionary, as many pointed out, is horrible. It lacks tons of common words, as … (read more)

I once found a live bug opened for this, but I don't find it anymore.

The spell checking dictionary, as many pointed out, is horrible. It lacks tons of common words, as well as commonly used tech,internet, you name it - jargon words.

Is there (there should be) a repository to add missing words? Through my usage I add words to my private dictionary. Would be shame not to use this as part of this bug handling.

Asked by zarnivop 2 years ago

Last reply by pentaquark 1 year ago

  • المُؤرشفة

Picture-in-picture

I would like to enable picture-in-picture without constantly having a popup for it anytime my cursor goes onto the video screen. You could just put a button somewhere ou… (read more)

I would like to enable picture-in-picture without constantly having a popup for it anytime my cursor goes onto the video screen. You could just put a button somewhere out of the way. It's so annoying I have to just disable it, and that's not right. Nobody needs popups of any kind for anything ever. It's the same as an ad.

Asked by 36m2jones 2 years ago

Last reply by 36m2jones 2 years ago

  • المُؤرشفة

Place holders upside down in Google News (logged in)

The arrows for place holders, such as Page Up, on Google News are appearing as large fonts and sometimes upside down. Not sure if it's a local issue or not but I thought … (read more)

The arrows for place holders, such as Page Up, on Google News are appearing as large fonts and sometimes upside down. Not sure if it's a local issue or not but I thought I'd report in case it's global. I wouldn't know how to title the search to see the issue has been reported. Forgive me if so.

Edition Windows 10 Home Version 21H2 Installed on ‎2/‎27/‎2022 OS build 19044.1586 Experience Windows Feature Experience Pack 120.2212.4170.0 AMD Ryzen 3 3350U with Radeon Vega Mobile Gfx 2.10GHz Firefox 98.0.1 (64-bit) Chrome: Version 99.0.4844.74 (Official Build) (64-bit) Website: https://news.google.com/topstories?hl=en-US&gl=US&ceid=US:en

Asked by whocanduncan 2 years ago

Last reply by whocanduncan 2 years ago

  • حُلّت
  • المُؤرشفة

browser does not work anymore

As of this morning, the Firefox browser on my work computer does not get access to any website - including mozilla itself. On the same computer Safari works without probl… (read more)

As of this morning, the Firefox browser on my work computer does not get access to any website - including mozilla itself. On the same computer Safari works without problems, on my smartphone and in the same wifi network my mobile Firefox works.

What is wrong?

Asked by cpeterbauer 2 years ago

Answered by Paul 2 years ago

  • المُؤرشفة

Specific web pages not working

I subscribe to the Times.co.uk but past few days am unable to navigate on the website eg if I press 'show more on the web page' nothing happens. `It does work however if … (read more)

I subscribe to the Times.co.uk but past few days am unable to navigate on the website eg if I press 'show more on the web page' nothing happens. `It does work however if I access using my Safari browser, so clearly not a 'Times' issue

Asked by carolinedudgeon2210 2 years ago

Last reply by cor-el 2 years ago

  • المُؤرشفة

Updating Within Application as a Non-Administrator.

I am encountering an issue where I am unable to update from within my browser (Help->About). I have confirmed that the policies.json ("C:\Program Files\Mozilla Firefox… (read more)

I am encountering an issue where I am unable to update from within my browser (Help->About). I have confirmed that the policies.json ("C:\Program Files\Mozilla Firefox\distribution\policies.json") has "DisableAppUpdate": false, to ensure I am not blocking myself. As of now if I try to update it gives me a prompt saying: "Updates avaliable at https://www.mozilla.org/en-US/firefox/new" Is I give myself administrator access then I get normal behavior and the browser begins updating automatically.

The odd thing is if I modify the permissions on C:\Program Files\Mozilla Firefox directory to allow normal users the ability to write/modify its contents then the Normal User Account is then able to update the browser as desired. The obviously solution is to just modify the permission and allow Normal Users to update. But I am hoping you have a better solution that more precise because I am concerned of the security impact of opening the directory to all users.

Is there a specific file/sub directory I can give them access to that accomplishes the same thing or is there a setting I need to change on the installer that would fix this.

Thanks!

Asked by esifive 2 years ago

Last reply by cor-el 2 years ago

  • المُؤرشفة

Firefox buffering but not playing videos.

Hello, I am using Firefox 100 on Arch Linux (5.17.6-arch1-1) with GNOME 42.1, and after recent updates i doesn't play any videos, it is buffering them, plays a frame and … (read more)

Hello, I am using Firefox 100 on Arch Linux (5.17.6-arch1-1) with GNOME 42.1, and after recent updates i doesn't play any videos, it is buffering them, plays a frame and pauses.

1. I reinstalled firefox. 2. I cleaned cache && cookies. 3. I removed extensions.

Still need a help! :)

Asked by sam.vardanyan 2 years ago

Last reply by jonzn4SUSE 1 year ago

  • المُؤرشفة

Missing a suspicious Extension in the Manager?

I'm highly suspicious of an extensions i downloaded a while ago. It has blocked facebook from tracking me as some websites i access automatically uses Facebook. When I ch… (read more)

I'm highly suspicious of an extensions i downloaded a while ago. It has blocked facebook from tracking me as some websites i access automatically uses Facebook. When I checked the manager to make an exception for a website I was using, I don't see it there, not even to disable it. I even double checked if my only blocker, UBlock Origin is preventing it from showing but it's not even there either. So now I'm worried my data is compromised.

Asked by rdsreloaded 2 years ago

Last reply by rdsreloaded 2 years ago