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

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

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

wombat3 於 2 年前 詢問

user104147805413306348376805769878442569366 最近回覆於 2 年前

  • 封存

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 年前

  • 封存

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

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.

jeboyd812 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

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

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

steve447 於 2 年前 詢問

Terry 最近回覆於 2 年前

  • 封存

suspicious .htm downloads

I've been seeing suspicious .htm files appear in "downloads" when I hadn't requested any downloads. When I try to open the file, it always appears blank. Once I rebooted … (閱讀更多)

I've been seeing suspicious .htm files appear in "downloads" when I hadn't requested any downloads. When I try to open the file, it always appears blank. Once I rebooted without deleting the file, and my system acted like it had a virus. I rebooted in Safe Mode and reverted to a restore point, then everything was fine. But I'm still seeing those suspicious files appearing, at least once per day. How do I stop them?

Keith Heiberg 於 2 年前 詢問

cor-el 最近回覆於 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 年前

  • 封存

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

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

nirdesh.kumar 於 2 年前 詢問

cor-el 最近回覆於 2 年前

  • 封存

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

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.

valvarez 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

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

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

JAYeskewicz 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

Time out on a site

Hello, I am having problems with my VGLI site. Every time I try logging in it times out, Is there a way to stop that from happening. My internet connection is sound and w… (閱讀更多)

Hello, I am having problems with my VGLI site. Every time I try logging in it times out, Is there a way to stop that from happening. My internet connection is sound and working properly. And I've confirmed the correct address.

This is the error that I am concerned about. If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web. How do I check or update that information?

GlennT 於 1 年前 詢問

FredMcD 最近回覆於 1 年前

  • 封存

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

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.

njmutnick 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

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

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.

dowens739 於 2 年前 詢問

FredMcD 最近回覆於 2 年前

  • 封存

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

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

magnusbox 於 2 年前 詢問

Terry 最近回覆於 2 年前

  • 封存

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

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?

Craig N 於 2 年前 詢問

vicsar 最近回覆於 1 年前