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

Previous bookmarks not shown

I reset my PC and reinstalled Firefox last month, but my bookmarks were never recovered after I logged in my Firefox account. A couple of months ago I installed Firefox o… (read more)

I reset my PC and reinstalled Firefox last month, but my bookmarks were never recovered after I logged in my Firefox account. A couple of months ago I installed Firefox on another PC (to which I no longer have access) and it showed all the synced bookmarks, but this time it doesn't. What should I do? Thank you

Asked by InfernalLord 1 year ago

Answered by InfernalLord 1 year ago

  • المُؤرشفة

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

  • المُؤرشفة

Throwing Error all the day

Every day while opening the browsing I am getting the below-mentioned error, tried many things like complete reinstallations, and selected default profiles, but nothing w… (read more)

Every day while opening the browsing I am getting the below-mentioned error, tried many things like complete reinstallations, and selected default profiles, but nothing worked.

Asked by amaljith.t 1 year ago

Last reply by jonzn4SUSE 1 year 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

  • المُؤرشفة

Addon: searching foor toolbar addon that allows shortcuts to local applications (not url's)

Hello, I am looking for a toolbar addon that allows shortcuts to local applications. Example, shortcuts to notepad, word, calc etc... on a toolbar (like the firefox [CTR… (read more)

Hello,

I am looking for a toolbar addon that allows shortcuts to local applications. Example, shortcuts to notepad, word, calc etc... on a toolbar (like the firefox [CTRL]+[SHIFT]+[B]-toolbar)

There are launchers and such to launch applications, but I just want a dedicated toolbar for this where I can place shortcuts to firefox tools/utilities on there.

10+ years ago there was an addon for firefox that was a simple toolbar which could handle url's, local applications...anything as long as it could be created as a shortcut on the desktop. But I can't find it anymore it probably got dis-continued.

Any suggestion is very welcome.

Thanks.

Asked by ron_r 1 year ago

Last reply by ron_r 1 year ago

  • المُؤرشفة

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

  • المُؤرشفة

Cannot enable anything other than a dark screen

For me, running 101.0 on Windows 11, Firefox disregards the selected theme and shows web pages in black no matter what I do (except for these support pages, oddly). Somet… (read more)

For me, running 101.0 on Windows 11, Firefox disregards the selected theme and shows web pages in black no matter what I do (except for these support pages, oddly). Sometimes it renders as black text on a black background, making it impossible to use. My windows theme is "Light", my Firefox theme is "Light". I CAN select ALWAYS to override every web page with a light background and dark text, but obviously that interferes with the design of most web pages. This problem has persisted for months. I have read the suggestions about changing UI settings in about:config and none of them work. As much as I love Firefox and Mozilla, there are many web pages rendered unusable by this problem, and I am about ready to throw in the towel and start using Chrome.

Asked by russ.jones 1 year ago

Last reply by russ.jones 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 2 years ago

Last reply by cor-el 1 year ago

  • المُؤرشفة

Sophos Home windows application doesn't launch to Mozilla Firefox browser

How do I configure Firefox to work with the Sophos Home application on Windows? Many of the buttons on the Sophos Home application do not function. For example, clicking … (read more)

How do I configure Firefox to work with the Sophos Home application on Windows? Many of the buttons on the Sophos Home application do not function. For example, clicking "Dashboard" does nothing. (It still prompts me to enter my Windows login, but nothing happens after I confirm; there is no error message, just nothing happens.) I confirmed the Sophos Home application does launch when Microsoft Edge is set as the default browser. Turning off Firefox plugins/add-ons and my VPN makes no difference. Firefox is up-to-date. I am on Windows.

Asked by wdistance 1 year ago

Last reply by wdistance 1 year ago

  • المُؤرشفة

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

  • المُؤرشفة

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

  • المُؤرشفة

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

  • المُؤرشفة

Facebook

I upgraded Firefox, created an account and installed Simple Tabs. I changed a few things in settings. I now have to login into Facebook every time and I cannot post anyt… (read more)

I upgraded Firefox, created an account and installed Simple Tabs. I changed a few things in settings. I now have to login into Facebook every time and I cannot post anything. How do I fix it? When the window pops up the little icon circle just keeps going around and around.

Asked by carik1967 1 year ago

Last reply by carik1967 1 year ago

  • المُؤرشفة

Websites aren't auto filling suggestions

Example: If I start typing in the address bar and type the letter a... amazon.com comes up since I frequent there a lot. But, if I start typing the name of my bank nothin… (read more)

Example: If I start typing in the address bar and type the letter a... amazon.com comes up since I frequent there a lot. But, if I start typing the name of my bank nothing comes up in the address bar. I always have to type it out.

Asked by bryan.touchton 1 year ago

Last reply by HKSim 1 year ago