Viser spørgsmål med mærkatet: Vis alle spørgsmål
  • Arkiveret

Cookies

I clicked on a permission to improve my Cookie protection this morning. I just want to confirm that this is a legitimate Fire Fox protection and not some sort of scam. An… (læs mere)

I clicked on a permission to improve my Cookie protection this morning. I just want to confirm that this is a legitimate Fire Fox protection and not some sort of scam. Andrew

Stillet af oneoldwahoo for 1 år siden

Seneste svar af cor-el for 1 år siden

  • Arkiveret

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… (læs mere)

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?

Stillet af knvbhk for 2 år siden

Seneste svar af cor-el for 1 år siden

  • Arkiveret

Update has screwed up my settings

So I updated today as requested and now all the sites I had previously checked to allow pop ups etc on are no longer functioning. Why dod you not include copying these s… (læs mere)

So I updated today as requested and now all the sites I had previously checked to allow pop ups etc on are no longer functioning.

Why dod you not include copying these settings in your update,

What a massive waste of my time

Stillet af steve447 for 2 år siden

Seneste svar af Terry for 2 år siden

  • Arkiveret

400 Bad Request Request Header Or Cookie Too Large

Whenever I get this message; I just go to Chrome and it works fine. Trying to goto: https://www.westernjournal.com/justice-roberts-goes-nuclear-activates-police-force-a… (læs mere)

Whenever I get this message; I just go to Chrome and it works fine.

Trying to goto:  https://www.westernjournal.com/justice-roberts-goes-nuclear-activates-police-force-answerable-court/?utm_source

I have several issues when using Western journal that work fine if I use Chrome browser. Like answering question of the day, I have to reload the page to see the results. Chrome updates right after I select answer. About ready to switch back to Chrome and I Really don't want too!

Stillet af davespc01 for 2 år siden

Seneste svar af cor-el for 1 år siden

  • Arkiveret

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 … (læs mere)

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

Stillet af jaak0226 for 2 år siden

Seneste svar af Chris Ilias for 2 år siden

  • Arkiveret

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 … (læs mere)

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?

Stillet af borgward for 1 år siden

Seneste svar af Tan Chee Keong for 1 år siden

  • Løst
  • Arkiveret

Access to banking websites

Hi New Dell Inspiron 15-3000, installed Firefox 100 in new laptop, transfered all files via LAN from old laptop All websites work ok except 2 of the 4 banking websites I … (læs mere)

Hi New Dell Inspiron 15-3000, installed Firefox 100 in new laptop, transfered all files via LAN from old laptop All websites work ok except 2 of the 4 banking websites I use. One site will not accept my login the other will open after putting in my login twice Have gone to "troubleshoot mode" and both sites work , go back to "normal" and they do not work Any clues how to fix this, not to technical please I am not a computer whizz and all children have left home Many thanks Ron Managh

Stillet af ronmanagh for 1 år siden

Besvaret af cor-el for 1 år siden

  • Arkiveret

Password outdated

Hello, I tried to sign in to my firefox account on a new computer and it appears the rules for password format have changed such that my existing password is too short to… (læs mere)

Hello, I tried to sign in to my firefox account on a new computer and it appears the rules for password format have changed such that my existing password is too short to be used. How should I proceed to either sign in or reset my password without affecting my existing firefox browsers and lockwise app? Thank you.

Stillet af john.lee3 for 1 år siden

Seneste svar af cor-el for 1 år siden

  • Arkiveret

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 … (læs mere)

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! :)

Stillet af sam.vardanyan for 2 år siden

Seneste svar af jonzn4SUSE for 2 år siden

  • Arkiveret

getting rid of YOPmail

This morning YOPmail showed up on my windows 10 foxfire as a pinned tab. It claims to be an extension (chrome). Nowhere does anyone say it is malicious...but I want it go… (læs mere)

This morning YOPmail showed up on my windows 10 foxfire as a pinned tab. It claims to be an extension (chrome). Nowhere does anyone say it is malicious...but I want it gone and nowhere is there instructions on how to remove it...I have contacted the dev. we'll see...

It is my business computer and I don't like software, apps, code, extensions or add-ons that i cant get rid of.

Any help would be appreciated.

Jim

Stillet af CarolinaPavers for 2 år siden

Seneste svar af CarolinaPavers for 2 år siden

  • Arkiveret

Gatway Timeout Error when trying to use Ebay Catagory Links

I'm completely at a loss with this. Firefox is not able to open eBay category lists. Clicking on the drop-down "Shop by Category", link or any of the sub-category links… (læs mere)

I'm completely at a loss with this. Firefox is not able to open eBay category lists. Clicking on the drop-down "Shop by Category", link or any of the sub-category links within the menu go nowhere except for a gateway timeout error after a number of minutes. This is incredibly inconvenient, because unless you are looking for a specific item by searching for it, you have no way to browse through categories. I don't seem to have this problem with any other website that I can think of, but since I use eBay quite regularly (daily), it has long ago gone from annoying to down right intolerable.

This isn't a problem with Safari, but I seldom use that browser preferring to use Firefox instead.

I've tried every solution I've come across. From giving permissions, turning of Firefox Enhanced Tracking, turning off any ad blockers I have. Using Troubleshoot Mode, manually turning off and on extensions, clearing history and all remnants of eBay in case of corrupt cookies or anything else for that matter. I've even lit black candles while dancing beneath a dark moon in hopes of exercising what seems to be a long resident multi-year demon. And the damn thing isn't even paying any rent!

I am on an iMac, using Catalina with everything up to date.

So, I have two questions:

1.) Does everyone else still have this problem? I've seen pages of search results on Google for this and similar issues with eBay and Firefox stemming back three or more years.

2.) If you do not have this problem, what have you done other than fixes I've listed? And if you happened to include a particular color candle and phase of the moon differing from mine even that suggestion would be appreciated. :)

Stillet af Gemini for 1 år siden

Seneste svar af SO Lo for 1 år siden

  • Løst
  • Arkiveret

Download pane appears in upper right quadrant.

I always use the current Firefox on two Macintosh browsers running OS 10.14.6. Recently (in only one of the computers), if I download a file, a pane containing recent do… (læs mere)

I always use the current Firefox on two Macintosh browsers running OS 10.14.6.

Recently (in only one of the computers), if I download a file, a pane containing recent downloads opens in the upper left-hand quadrant. This is distinct from the downloads portion of the "Library" area, and gets in the way of my ability to use Firefox efficiently.

I can't seem to find a way to keep this pane from repeatedly opening up as I download things. Can anyone help?

Stillet af Etnier for 2 år siden

Besvaret af YongHan for 2 år siden

  • Arkiveret

Protecting cookies from select sites

How do i protect cookies from being deleted in mozilla firefox? I have one account that "doesn't recognize my device" when I enter my user name and password, and require… (læs mere)

How do i protect cookies from being deleted in mozilla firefox? I have one account that "doesn't recognize my device" when I enter my user name and password, and requires them to contact me with a code every time I try to log in...It is very annoying!!

Stillet af wetazz for 2 år siden

Seneste svar af cor-el for 2 år siden

  • Løst
  • Arkiveret

Firefox 100.0.1

After i just updated Firefox to newest version .. I can not load any website anymore!!!!!! please make it so i can return to the previous version ASAP so everything works… (læs mere)

After i just updated Firefox to newest version .. I can not load any website anymore!!!!!! please make it so i can return to the previous version ASAP so everything works again.

Al those other solutions you guys give like clear cache disable en able etc don't work and take hrs of time

When oyu push a other update through some 1's throat atleast make it that it A)works B) option to roll back . TY

Stillet af Firefoxuser for 1 år siden

Besvaret af Firefoxuser for 1 år siden

  • Arkiveret

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 … (læs mere)

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.

Stillet af zarnivop for 2 år siden

Seneste svar af pentaquark for 1 år siden

  • Arkiveret

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… (læs mere)

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.

Stillet af bryan.touchton for 1 år siden

Seneste svar af HKSim for 1 år siden

  • Arkiveret

Built in screenshot tool: How to hide notification when shot taken?

This annoying notification on the bottom right keeps popping up everytime I take a screenshot. I've been using computers for the past 17 years, I know how to paste thing… (læs mere)

This annoying notification on the bottom right keeps popping up everytime I take a screenshot. I've been using computers for the past 17 years, I know how to paste things by now. Even worse, it overlays on other applications and pesters me there for about 10 seconds until I close it. Can this notification be hidden in about config or do I have to find a community add on that does the same thing, but without this stupid notification?

Stillet af gsrgtrdg4565653 for 1 år siden

Seneste svar af Ming Ze for 1 år siden