Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Archiviert

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… (Lesen Sie mehr)

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!

Gefragt von jack108 vor 1 Jahr

Letzte Antwort von cor-el vor 1 Jahr

  • Archiviert

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… (Lesen Sie mehr)

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.

Gefragt von anthony.reed.mt vor 1 Jahr

Letzte Antwort von cor-el vor 1 Jahr

  • Archiviert

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… (Lesen Sie mehr)

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.

Gefragt von sp5001 vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

Word and some jpg attachmets not opening. AOL says it is a browser problem. Have cleared cache (previous advice) still got problem. This a new problem last month. Help please

Clearing the cache and opening in troubleshoot mode did not help, hence repeated question. All attachments open in Edge and Chrome but I like Firefox so very like to fix … (Lesen Sie mehr)

Clearing the cache and opening in troubleshoot mode did not help, hence repeated question. All attachments open in Edge and Chrome but I like Firefox so very like to fix the problem. Many thanks for help on this

Gefragt von DavidWalker vor 1 Jahr

Letzte Antwort von jscher2000 - Support Volunteer vor 1 Jahr

  • Archiviert

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 … (Lesen Sie mehr)

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.

Gefragt von zarnivop vor 2 Jahren

Letzte Antwort von pentaquark vor 1 Jahr

  • Archiviert

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… (Lesen Sie mehr)

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?

Gefragt von knvbhk vor 2 Jahren

Letzte Antwort von cor-el vor 1 Jahr

  • Archiviert

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… (Lesen Sie mehr)

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.

Gefragt von rdsreloaded vor 2 Jahren

Letzte Antwort von rdsreloaded vor 2 Jahren

  • Archiviert

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 … (Lesen Sie mehr)

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?

Gefragt von borgward vor 1 Jahr

Letzte Antwort von Tan Chee Keong vor 1 Jahr

  • Archiviert

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 … (Lesen Sie mehr)

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.]

Gefragt von jaak0226 vor 2 Jahren

Letzte Antwort von Chris Ilias vor 2 Jahren

  • Gelöst
  • Archiviert

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… (Lesen Sie mehr)

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?

Gefragt von cpeterbauer vor 2 Jahren

Beantwortet von Paul vor 2 Jahren

  • Archiviert

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 … (Lesen Sie mehr)

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

Gefragt von whocanduncan vor 2 Jahren

Letzte Antwort von whocanduncan vor 2 Jahren

  • Archiviert

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… (Lesen Sie mehr)

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.

Gefragt von 36m2jones vor 2 Jahren

Letzte Antwort von 36m2jones vor 2 Jahren

  • Archiviert

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… (Lesen Sie mehr)

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!

Gefragt von esifive vor 2 Jahren

Letzte Antwort von cor-el vor 2 Jahren

  • Archiviert

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 … (Lesen Sie mehr)

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

Gefragt von carolinedudgeon2210 vor 2 Jahren

Letzte Antwort von cor-el vor 2 Jahren