Showing questions tagged: Show all questions
  • Archived

Firefox 64-bit for windows

The 100 release of Firefox turned half of my desktop web site shortcut icons to PDF icons. Why? And why only some? I have some URL shortcuts that I have no control over t… (read more)

The 100 release of Firefox turned half of my desktop web site shortcut icons to PDF icons. Why? And why only some? I have some URL shortcuts that I have no control over the icon (no change icon selection under properties). How do I get these changed back, other than redoing all the changed ones? Thanks, Wayne

Asked by wombat3 2 years ago

Last reply by user104147805413306348376805769878442569366 2 years 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 2 years ago

Last reply by cor-el 2 years ago

  • Archived

Can't do any searches in Firefox

When I type a term in the address bar or in any search engine...nothing. Links don't work from open pages. Typing a URL in the address bar doesn't work unless it's a site… (read more)

When I type a term in the address bar or in any search engine...nothing. Links don't work from open pages. Typing a URL in the address bar doesn't work unless it's a site I've been to previously. It's very frustrating. Everything works fine in Chrome...and I hate Chrome.

Asked by jeboyd812 2 years ago

Last reply by FredMcD 2 years ago

  • Archived

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… (read more)

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

Asked by steve447 2 years ago

Last reply by Terry 2 years ago

  • Archived

firefox browser

Since your last update I can no longer view my credit card statements, it downloads a pdf file. If I go to download the pdf instead I receive four pdf files downloaded. T… (read more)

Since your last update I can no longer view my credit card statements, it downloads a pdf file. If I go to download the pdf instead I receive four pdf files downloaded. The edge and brave browsers don't do this.

Asked by 99broekstra 2 years ago

Last reply by Terry 2 years ago

  • Archived

bam-cell.nr-data.net

Hello Team, Hope! You are doing well. We are facing some issues in the Firefox console tab. Sometimes, this problem stops our application or else we always see this err… (read more)

Hello Team,

Hope! You are doing well.

We are facing some issues in the Firefox console tab. Sometimes, this problem stops our application or else we always see this error in our console tab. POSThttps://bam-cell.nr-data.net/jserrors/1/9ff200a8ca?a=582326427&v=1216.487a282&to=ZAdSMUAHChJZUxAPXF1NfTNxSSAAS1gGCVJBBnMKXBIWDlRcARQcdwNDDV83&rst=28&c=https://www.sm.com [HTTP/1.1 403 Forbidden 995ms] So i would request please suggested us to resolved this issue. we have used MVC technology to make our portal. This issue is occurring in only normal browser, In a private browser, it is working fine.We are waiting for a positive response as soon as possible.

Thanks & Regards

Asked by nirdesh.kumar 2 years ago

Last reply by cor-el 2 years ago

  • Archived

web page coding

I have my own intranet page which is set as my main page in Firefox. How can I open a network folder in Windows Explorer with Firefox? I don't want to view the folder thr… (read more)

I have my own intranet page which is set as my main page in Firefox. How can I open a network folder in Windows Explorer with Firefox? I don't want to view the folder through Firefox.

Asked by valvarez 2 years ago

Last reply by FredMcD 2 years ago

  • Archived

change primary email address on profile

Instructions on changing primary email address not helpful-prompted to access Accounts but profile displayed would not let me edit my primary email address. When attempte… (read more)

Instructions on changing primary email address not helpful-prompted to access Accounts but profile displayed would not let me edit my primary email address. When attempted to add secondary address was notified that code was sent to my old email address was was compromised & deleted by security of my carrier Want to add new email address & add secondary email account. Assistance greatly appreciated

Asked by JAYeskewicz 2 years ago

Last reply by FredMcD 2 years ago

  • Archived

Logo Not Showing in Firefox

Hello, The logo on this page I'm creating isn't showing in Firefox. It's working fine in other browsers. When I inspect the logo url is there but not sure why it isnt … (read more)

Hello,

The logo on this page I'm creating isn't showing in Firefox. It's working fine in other browsers.

When I inspect the logo url is there but not sure why it isnt showing.

Asked by lwynn 2 years ago

Last reply by cor-el 2 years ago

  • Archived

cycling error

I reported this error; however, I still do not have an answer. MS Edge works perfectly; why does Firefox get stuck in a "forever" loop during the Monrovia Website searc… (read more)

I reported this error; however, I still do not have an answer.

MS Edge works perfectly; why does Firefox get stuck in a "forever" loop during the Monrovia Website search? See the attached jpg.

Asked by kinnear333 2 years ago

Last reply by cor-el 2 years ago

  • Archived

Give Firefox permission to access a webpage - firewall issue?

Hi. How do I give permission to Firefox to open a webpage? There seems to be a firewall issue or something? Please provide the exact steps to allow a URL to be opened wi… (read more)

Hi. How do I give permission to Firefox to open a webpage? There seems to be a firewall issue or something? Please provide the exact steps to allow a URL to be opened with my permission. How do I grant access / grant permission to access a specific site? Thanks. FYI: I'm a bit frustrated and I have a deadline coming up soon.

Asked by njmutnick 2 years ago

Last reply by FredMcD 2 years ago

  • Archived

Confusing message at the top of the setting screen

I'd like more information about what the message appearing at the top of the settings screen is telling me. The message is "Your browser is being managed by your organiza… (read more)

I'd like more information about what the message appearing at the top of the settings screen is telling me. The message is "Your browser is being managed by your organization." I am a stand alone personal user and not a part of an organization.

Asked by dowens739 2 years ago

Last reply by FredMcD 2 years ago

  • Archived

download warning keeps appearing after clearing downloads

The warning "This file contains a virus or malware" keeps appearing from my downloads progress bar even though the files have been deleted and the download history has b… (read more)

The warning "This file contains a virus or malware" keeps appearing from my downloads progress bar even though the files have been deleted and the download history has been repeatedly cleared. I've restarted my mac several times to no avail. Please can you help? Magnus

Asked by magnusbox 2 years ago

Last reply by Terry 2 years ago

  • Archived

Saved passwords in Firefox not syncing to Google account

I use Firefox as my default browser. I have sync turned on. Im signed in thru my google account. Firefox does NOT sync to my Chrome browser and Google account. Whats the … (read more)

I use Firefox as my default browser. I have sync turned on. Im signed in thru my google account. Firefox does NOT sync to my Chrome browser and Google account. Whats the fix?

Asked by Craig N 2 years ago

Last reply by vicsar 1 year ago