顯示下列標籤的問題: 顯示所有問題
  • 封存

found a bug with firefox 101.0b5 website https://www.express.co.uk/ it does not display the comments for an article. Works with Microsoft Edge

found a bug with firefox 101.0b5 website https://www.express.co.uk/ it does not display the comments for an article. Works with Microsoft Edge … (閱讀更多)

found a bug with firefox 101.0b5 website https://www.express.co.uk/ it does not display the comments for an article. Works with Microsoft Edge

Ga Mountain Hiker 於 2 年前 詢問

cor-el 最近回覆於 2 年前

  • 封存

Highlighting of buttons

Happens on a number of websites when I press buttons, like Youtube logo for example, blue box surrounds the logo. Other cases when i adjust the volume button on a youtube… (閱讀更多)

Happens on a number of websites when I press buttons, like Youtube logo for example, blue box surrounds the logo. Other cases when i adjust the volume button on a youtube video, the button is remembered and whenever I press spacebar with the intention of pausing the video, the video gets muted instead because the volume button is highlighted and remembered.

BudgetPrincess 於 2 年前 詢問

vda1 最近回覆於 2 年前

  • 封存

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… (閱讀更多)

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?

knvbhk 於 2 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

Firefox not blocking ads on Youtube

Hi Community, Hope you are all enjoying to be part of the firefox community. Is there a way to block ads on youtube without installing addons. Could you please let me kn… (閱讀更多)

Hi Community,

Hope you are all enjoying to be part of the firefox community. Is there a way to block ads on youtube without installing addons. Could you please let me know.

Thanks,

Uday Kumar 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

Unable to enable 3rd party session cookies

I have tried EVERY suggested fix for viewing Kaltura videos in the FireFox browser. NOTHING works! I refuse to use Google (they know enough about everyone as it is) and E… (閱讀更多)

I have tried EVERY suggested fix for viewing Kaltura videos in the FireFox browser. NOTHING works! I refuse to use Google (they know enough about everyone as it is) and Edge works but I do not care for it.

Can't be that freakin hard to allow the viewing of Kaltura lecture videos posted by professors in an application that is used by many educational institutions across the country. Google and Edge seem to have figured it out so why can't Mozilla?

This issue needs to be fixed!

j.wright031970 於 2 年前 詢問

cor-el 最近回覆於 2 年前

  • 封存

Windows 11 Video Playback Issues

Videos don't play in Firefox after updating to Windows 11. They just perpetually load. Playback works fine on Google Chrome, I'm not sure what could be causing this. I tr… (閱讀更多)

Videos don't play in Firefox after updating to Windows 11. They just perpetually load. Playback works fine on Google Chrome, I'm not sure what could be causing this. I tried reinstalling, disabling all extensions, clearing cache, etc. and nothing has worked.

Chrissy 於 2 年前 詢問

jonzn4SUSE 最近回覆於 2 年前

  • 封存

losing passwords

okay been losing passwords not able to figure out why i have talked to the hp omen support teams twice now in the last 3 months the first time resulted in a complete bac… (閱讀更多)

okay been losing passwords not able to figure out why i have talked to the hp omen support teams twice now in the last 3 months the first time resulted in a complete back to factory settings the second one was today hp case #5085372677 which found nothing on my end was wrong and they believe the problem start's here with firefox i am update with the latest firefox updates

lhicks7905 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

installed windows 11 on my pc. open firefox. where are all the former menu items including bookmarks?

right and left clicking on the open app menu in the far right column didn't help me. I'm only a 17-year computer professional with a Ph.D. who publishes in peer-reviewed … (閱讀更多)

right and left clicking on the open app menu in the far right column didn't help me. I'm only a 17-year computer professional with a Ph.D. who publishes in peer-reviewed journals. How am I supposed to guess what to do?

cahalanj 於 2 年前 詢問

Terry 最近回覆於 2 年前

  • 封存

Bookmark manager

Recently got a new PC with Windows 11 and since I downloaded Firefox the shortcut of CTRL+Shift+O will not open the bookmark manager. Does the same on Opera GX and Chrome… (閱讀更多)

Recently got a new PC with Windows 11 and since I downloaded Firefox the shortcut of CTRL+Shift+O will not open the bookmark manager. Does the same on Opera GX and Chrome. Not sure if I did something wrong in the PC settings but nothing I've tried has fixed the problem

josh10451 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

Possible IPC memory leak - how to pinpoint the culprit?

Hey there, I'm having trouble with Firefox. Something inside Firefox is eating up my RAM and CPU. Usually I recognize the problem happening because my laptop fans ramp up… (閱讀更多)

Hey there, I'm having trouble with Firefox. Something inside Firefox is eating up my RAM and CPU. Usually I recognize the problem happening because my laptop fans ramp up. The problem occurs on my laptop as well on my desktop (both on latest stable Firefox[Build ID: 20220513165813] and Windows 11). The workaround is to kill the Firefox subprocess which is using most of the CPU and RAM. Then everything is back to normal for some time, until Firefox starts messing with me again.

While trying to pinpoint the problem I'm stuck. I can't find a culprit other than the fact it has something to do with Firefox. Clean reinstalling did not help. The Firefox Task Manager doesn't know anything about huge amounts of RAM being taken. I searched for solutions on the net and the about:memory indicates the problem is some IPC related stuff:

 {
  "process": "Main Process (pid 12648)",
  "path": "queued-ipc-messages/content-parent(Browser, pid=9612, open channel, 0x22e4b33fc30, refcnt=38)",
  "kind": 2,
  "units": 1,
  "amount": 0,
  "description": "The number of unset IPC messages held in this ContentParent's channel.  A large value here might indicate that we're leaking messages.  Similarly, a ContentParent object for a process that's no longer running could indicate that we're leaking ContentParents."
 }

The bug reporting guidelines(https://bugzilla.mozilla.org/page.cgi?id=bug-writing.html) are encouraging me to attach steps to reproduce and try the steps listed on https://support.mozilla.org/en-US/kb/firefox-uses-too-much-memory-or-cpu-resources . But I've exhausted the steps there (Except for upgrading the PC / RAM).

Especially on the go this Firefox-RAM-Party takes quite some battery and right now while writing this Firefox has >100GB virtual RAM reserved for some IPC messages, I personally think this is too much. So I'd like to file a report, but without steps to reproduce I'm afraid the developers are going to say 'well, that's something we are not able to diagnose', because I am unable to explain how to reproduce it. It just happens from time to time.

The anonymized about:memory report: https://bin.disroot.org/?2ba01ef78154cce4#8PLVqLTd9qgaRn2QVX2P17hkbHQyrTDuVAwoykj2cBxg

I left Firefox running like this for about half an hour and at 138GB reserved RAM Windows slaughtered my Firefox. The resulting crash report: https://bin.disroot.org/?0bc57492585dde4b#5YtbWgXcbZSkWYmg2CGkVn9iiipYwfYbxUfCLhmMJh7d

Do you have a clue where I might find out who sends those IPC messages, and therefore who is responsible for this?

Sewana 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

stop navbar searching permanently

If I wanted to use the navbar for search I'd set it up that way. I don't, and I'm getting really sick of doing this... type in searchBar "about:config" Accept war… (閱讀更多)

If I wanted to use the navbar for search I'd set it up that way. I don't, and I'm getting really sick of doing this...

    type in searchBar "about:config"
   Accept warning
   Search "browser.urlbar.suggest.searches" and change it to false (Do this Only if you want to disable suggesions)
   Search "keyword.enabled" and change it to false
   Search "browser.fixup.alternate.enabled" and change it to false 

every time I open Firefox or a new tab in Firefox.

I'd like the option of not having it search in the navbar, ever. I search using Google. I like Google. I've been a big fan and supporter of Firefox for years, but this constantly having to deal with the search in the navbar thing, which I don't want it to do, is really turning me off of Firefox. I hate the Microsoft junk, Explorer and Edge, and I don't like Chrome either, but I'm getting really sick of Firefox trying to shove this Search via the navbar thing down my throat.

How do I disable navbar search permanently, or am I just stuck with redoing it every time I open Firefox or a new tab, at least until I get completely fed up and decide to give another browser a try at replacing Firefox?

deannag65 於 1 年前 詢問

Terry 最近回覆於 1 年前

  • 封存

URL Bar at the bottom doesn't disappear after going into the fullscreen mode in videos.

When I watch a video, mostly in Netflix, and go to the fullscreen mode, I see a url line on the bottom left corner of my screen. It doesn't go away when I click the scree… (閱讀更多)

When I watch a video, mostly in Netflix, and go to the fullscreen mode, I see a url line on the bottom left corner of my screen. It doesn't go away when I click the screen. When I try to click over it it switches to the right bottom corner, which I find quite frustrating. Whenever, this happens I should refresh the page and hope that it solves my problem and most of the times it does. However, I still would be quite happy if I figured out what caused this problem and if there is anything I can do it to fix it for good.

Firefox version: 100.0.2 (64-Bit) Windows Version: Windows 11 Pro 21H2.

hsbmoz 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

RSMeans and Firefox compatibility

Hi there! Well, another company told my business partner that their product does not like Firefox so we should use Chrome and maybe Edge. First, that is a crock, but se… (閱讀更多)

Hi there! Well, another company told my business partner that their product does not like Firefox so we should use Chrome and maybe Edge. First, that is a crock, but seems to be a standard answer from anyone in the business world, sadly. I would not trust Edge or Chrome, especially those two, if they were the last platforms on earth. So, help pretty please?

Is there a setting that we can use that will assist in using RSMeans Online Version so it will work more effectively? Whenever we get an error message or it just won't open, they blame it on Firefox.

belinda.bentley 於 1 年前 詢問

Paul 最近回覆於 1 年前

  • 封存

Onedrive won't open in Firefox.

This is the second time in 4 months I've had this issue. The first time I resolved it by clearing my cache. That isn't working this time. I've looked at the help articles… (閱讀更多)

This is the second time in 4 months I've had this issue. The first time I resolved it by clearing my cache. That isn't working this time. I've looked at the help articles and clearing the cache is there. This is where I found it the first time. Any ideas?

robynneda 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

browser shuts down

latest browser shuts down when I open a new session. After a few seconds it shuts off, I reopen it and its ok until the next time I open my notebook. The without fail it … (閱讀更多)

latest browser shuts down when I open a new session. After a few seconds it shuts off, I reopen it and its ok until the next time I open my notebook. The without fail it happens again. Began I think with the last update on a Windows 11 notebook.

lk3w99 於 1 年前 詢問

Greg M 最近回覆於 1 年前