Showing questions tagged: Show all questions
  • Archived

Firefox on Windows 11 now runs at 100% and a stack of ram

Firefox on Windows 11 now runs at 100% and a stack of ram. Obviously this slows down my PC and this is only on the home page with nothing to look at. This makes it unuse… (read more)

Firefox on Windows 11 now runs at 100% and a stack of ram. Obviously this slows down my PC and this is only on the home page with nothing to look at. This makes it unuseable. Tried help pages - no use at all. Why am I asking an unknown instead of Mozilla? To big for their boots?

Asked by MikeB 1 year ago

Last reply by Terry 1 year ago

  • Archived

Previous windows not opening at Startup

Hi there, "Open previous windows and tabs" is checked but it's not working. I had to go to history and opened it. It's happening for the last several weeks. Pls, let m… (read more)

Hi there,

"Open previous windows and tabs" is checked but it's not working. I had to go to history and opened it. It's happening for the last several weeks.

Pls, let me know what to do. MD

Asked by asiuzzaman 2 years ago

Last reply by FredMcD 2 years ago

  • Archived

firefox will not fully close after windows update 22621

I installed the new Windows 11 update now when I exit out of firefox "X" the next time I go to open and error tells me that firefox is running (it's not showing open and … (read more)

I installed the new Windows 11 update now when I exit out of firefox "X" the next time I go to open and error tells me that firefox is running (it's not showing open and running) and I have to close.

Asked by tbryant62256 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

Strange Popup on Wifi Menu

Hello! Hoping someone can help with this new (to me) issue. I've searched and can't seem to find any articles/threads. When I open the wifi menu on my laptop, I also see… (read more)

Hello! Hoping someone can help with this new (to me) issue. I've searched and can't seem to find any articles/threads.

When I open the wifi menu on my laptop, I also see a media player featuring a video I watched three days ago (image attached). I've used my computer several times since then and didn't notice it. It also doesn't appear to be functional, as when I click play, nothing happens.

Is there a setting I'm missing to get this to go away and to prevent it from coming back again?

Thanks in advance!

Asked by -eat-the-rude- 1 year ago

Last reply by r7pxrv 1 year ago

  • Archived

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

  • Archived

watching a show in full screen on a streaming site

I was watching a show on one of my streaming websites and it it in a shorter box instead of a full screen. im not sure if i accidentally clickec on something because it i… (read more)

I was watching a show on one of my streaming websites and it it in a shorter box instead of a full screen. im not sure if i accidentally clickec on something because it is happening on more then one streaming site

Asked by disney_gurl74 1 year ago

Last reply by cor-el 1 year ago

  • Archived

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

  • Archived

I have lost connection to firefox. I am 76 years old and I am unclear as to why I no longer can browse with firefox

cannot install fire fox I have used it for years as my main browser can you please help me get it back? This is a brand new computer. I should not be having any issues w… (read more)

cannot install fire fox I have used it for years as my main browser can you please help me get it back? This is a brand new computer. I should not be having any issues with Firefox

Asked by Tracy Reed Molitor 1 year ago

Last reply by cor-el 1 year ago

  • Archived

error in access website :

website not supported hello, there am jhonii, and I am here to discuss my problem am a website developer, but your browser does not accept my site. Please can I ask why y… (read more)

website not supported hello, there am jhonii, and I am here to discuss my problem am a website developer, but your browser does not accept my site. Please can I ask why your browers did not accept my website: updatedmodapk? It shows a security error always when I want to check it on mobile browsers. Kindly resolve my problem am very upset about it. My site also has SSL, but your browsers do not accept why????????????????????????

Asked by jhonii 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

not getting on a certain site

Why can't I get on viewmyaccount.com?It is for a financial service lpl finance. I was told not to go to viewmyaccountlpl.com.but to stay with viewmyaccount,com only. … (read more)

Why can't I get on viewmyaccount.com?It is for a financial service lpl finance. I was told not to go to viewmyaccountlpl.com.but to stay with viewmyaccount,com only.

Asked by Barry 1 year ago

Last reply by Paul 1 year ago

  • Archived

Firefox Theme keeps reverting back to an old theme I no longer have or remember whenever I sign into any Firefox browser.

Whenever I sign into Firefox, all my themes, add-ons/extensions are added via Firefox Sync. That's fine, but the problem I have is that whenever I sign into any Firefox b… (read more)

Whenever I sign into Firefox, all my themes, add-ons/extensions are added via Firefox Sync. That's fine, but the problem I have is that whenever I sign into any Firefox browser, an old theme I used to have that I no longer have on my account keeps coming back, and I've tried to find solutions to this issue, but none have had this kind of issue. It may be similar to issues those have had, or currently have, but I can't seem to do anything to remedy this issue.

Keep in mind that this is not a Firefox browser issue, it is an account issue.

I'd be deeply grateful to any assistance you may have for me.

Asked by m-fuller 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Archived

July 26 update opening too large

Opening firefox or a new tab is huge. goingto sites kike CNN or Amazon also are too large to use easily. Al,ost like Zoomimg to 400 percent but I am at 100 percent … (read more)

Opening firefox or a new tab is huge. goingto sites kike CNN or Amazon also are too large to use easily. Al,ost like Zoomimg to 400 percent but I am at 100 percent

Asked by 2alexanderdd2 1 year ago

Last reply by Paul 1 year ago