• தீர்வுற்றது
  • Archived

Sidebar unlocatable

Bought a new computer. All my toolbar bookmarks migrated across successfully. Sidebar symbol missing from the menu bar and I couldn't find where these Book Marks were at … (மேலும் படிக்க)

Bought a new computer. All my toolbar bookmarks migrated across successfully. Sidebar symbol missing from the menu bar and I couldn't find where these Book Marks were at first. But then I right clicked on the menu bar, clicked on Manage Book Marks which opened a Library box and there they were. Does anyone know an easier way to access them please? Any tips gratefully received. Thanks, Bob

Asked by bobofalex 8 மாதங்களுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Fifefox does not save a new payment method, clicking on save does nothing

Hi, it seems that my Firefox browser does not want to save a new payment method. I'm trying to access "Settings -> Privacy & Security -> Autofill" and then clic… (மேலும் படிக்க)

Hi, it seems that my Firefox browser does not want to save a new payment method. I'm trying to access "Settings -> Privacy & Security -> Autofill" and then click on "Saved payment methods", which opens a dialog with the existing payment methods and options to remove/add/edit. I'm clicking on Add, filling-in the card details and then clicking Save, nothing happens....

I previously had a working saved payment method, but it stopped working (I think more than 6 months ago). I tried to re-enable the credit cards by setting the following configs on about:config page:

- extensions.formautofill.creditCards.available: true
- extensions.formautofill.creditCards.supportedCountries: '...,RO' -> (I was adding my country to the existing list)

After the browser restart with those new settings when I'm on a payment page, clicking on a credit card field will show the saved credit card but if I click on it, it will not fill the details. And also trying to save a new card, manually as described previously in this message, or by the automatically prompt to save a new card after a successful payment was done. Both methods failed on me but with no error (I cannot see the saved payment on the list).

I tried removing the existing saved card, it worked removing it, but the add is still not working.

I also tried restarting in save mode, launching Firefox in a separate profile and added my country on the creditCards config for supportedCountries to show the "Saved payment methods" button on new profile, and it did not change anything.

I'm thinking there is a missing permission somewhere on the disk but I don't know where is the payment data stored on disk.

I would really appreciate any help on this.

PS: Check the attached pic to see the payment add and clicking the save button does nothing (also there are no validation errors). And the other: FF version, OS, troubleshooting info.

Asked by Mike S 8 மாதங்களுக்கு முன்பு

Answered by Mike S 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Animation CSS on my web site doesn't work on firefox

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox... here is my code:… (மேலும் படிக்க)

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox...

here is my code:


/* -------------------------------------- */ /* ANIMATION ANE */ @keyframes mouvement-uniforme {

   0% 		{ animation-timing-function: linear; transform: translateX(-500px); }
   100% 	{ animation-timing-function: linear; transform: translateX(30px); }

}

@-webkit-keyframes webkit-mouvement-uniforme { 0% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(245px); } 36% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(-2px); } 38% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-2px) translateY(2px ); } 40% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px); } 42% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(-3deg); } 100% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(0px); } }


@-moz-keyframes moz-mouvement-uniforme { 0% { -moz-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -moz-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -moz-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -moz-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -moz-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -moz-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -moz-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -moz-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -moz-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -moz-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -moz-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -moz-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -moz-transform: rotate(1deg) translateX(245px); } 36% { -moz-transform: rotate(0deg) translateX(-2px); } 38% { -moz-transform: translateX(-2px) translateY(2px ); } 40% { -moz-transform: translateX(-245px); } 42% { -moz-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -moz-transform: translateX(-245px) rotate(-3deg); } 100% { -moz-transform: translateX(0px); } }



@-ms-keyframes ms-mouvement-uniforme {

   0% 		{ -ms-animation-timing-function: linear; -ms-transform: translateX(-500px); }
   100% 	{ -ms-animation-timing-function: linear; -ms-transform: translateX(0px); }

} @-o-keyframes o-mouvement-uniforme {

   0% 		{ -o-animation-timing-function: linear; -o-transform: translateX(-500px); }
   100% 	{ -o-animation-timing-function: linear; -o-transform: translateX(0px); }

}


.position { position: relative; top: -200px; left: -280px; float:left; }

.bouge { animation: mouvement-uniforme 60s ; -webkit-animation: webkit-mouvement-uniforme 20s ; -webkit-animation-iteration-count: infinite; -webkit-animation-fill-mode: forwards; -webkit-animation-duration: 15s; -webkit-animation-delay: 0s; -webkit-overflow-scrolling: auto!important;

-moz-animation: moz-mouvement-uniforme 20s; -moz-animation-iteration-count: infinite; -moz-animation-fill-mode: forwards; -moz-animation-duration: 15s; -moz-animation-delay: 0s;

-ms-animation: ms-mouvement-uniforme 10s ;

-o-animation: o-mouvement-uniforme 10s ; }



It was working fine before on firefox. it works on other browsers (opera, Edge,..) Do something changed? it's a long time that i didn't chek it so...

this is the page where a donkey should appear at the bottom of the page:

https://www.campingnoroc.com/en/our-campsite/


Thanks a lot for your help!!

Asked by Pierre MARTIN 8 மாதங்களுக்கு முன்பு

Answered by Pierre MARTIN 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Add tab sharing support for Google Meet

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google … (மேலும் படிக்க)

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google Meet and having the TAB sharing feature available is highly appreciated. I know this was requested a lot, but this is a real dealbreaker for many people.

What are your thoughts on this? Maybe it's somewhere in the roadmap already? Thanks!

Asked by pounds.oiler_0j 8 மாதங்களுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Cannot Log On to Internet Banking

Firefox recently 'crashed' on my desktop PC. It asked me to restart in safe mode or restore to the original state. I chose to restore. This meant that I had to re-add all… (மேலும் படிக்க)

Firefox recently 'crashed' on my desktop PC. It asked me to restart in safe mode or restore to the original state. I chose to restore. This meant that I had to re-add all of my add-ons and log back into my favourite sites as my log-in details had disappeared. I got everything back to normal eventually, except for one very important site. I am now no longer able to log on to my bank website to review my accounts. I get an error message on the site saying " Log on error. You need to enable cookies in your browser to logon to Internet Banking." I have never had this problem before. I am able to log on successfully on my tablet, and also via a different browser on my desktop PC. I'm not a tech expert so this is very frustrating. I've tried clearing cookies/cache/data in the settings but no success. I really need to access my bank accounts on my desktop as I find this easier. Hopefully you can help as I don't want to use a different browser.

Best regards Andrew Sambrooks

Asked by andrewsambrooks 9 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Cannot add Amazon search engine to search toolbar

I am using Firefox 126.0 under Windows 10. I am trying to add search engines to the search toolbar. (Just to be clear, this is the search box that appears below the addr… (மேலும் படிக்க)

I am using Firefox 126.0 under Windows 10.

I am trying to add search engines to the search toolbar. (Just to be clear, this is the search box that appears below the address bar, not the address bar itself.)

I followed the instructions here. That worked fine for Wikipedia, Google Maps and YouTube. Then I tried to add Amazon UK. The Amazon icon is now present in the search box, but when I select it, I see this message:

Firefox could not download the search plugin from: https://d2lo25i6d3q8zm.cloudfront.net/browser-plugins/AmazonSearchSuggestionsOSD.Firefox.xml

I have no idea what this means or what to do about it.

(I also tried adding it from Settings > Search > Search Shortcuts, but Amazon does not appear on that list of search engines [unlike on my other computer]. I clicked "Find more search engines", but that brought up a list of 5,192 extensions, most of which seemed not be related to searching.)

Thanks in advance for any help or suggestions.

Mike

Asked by Mike L 8 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Translate

How can I find or add the translate icon to the toolbar. I did a screenshot but can't see how to insert it. My tool bar has only a toggle reader icon and a favorites icon… (மேலும் படிக்க)

How can I find or add the translate icon to the toolbar. I did a screenshot but can't see how to insert it. My tool bar has only a toggle reader icon and a favorites icon after the url in the address bar. translate does seem to work automatically on the first page of website, but then does not work on other tabs of the same website. screen shot added

Asked by forestshopkeeper 9 மாதங்களுக்கு முன்பு

Answered by cor-el 9 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Shortcuts on My Home Page

Hello, A couple of months ago I discovered that I no longer have the ability to edit, delete, or dismiss a shortcut from the home page of my desktop. I did read that the… (மேலும் படிக்க)

Hello,

A couple of months ago I discovered that I no longer have the ability to edit, delete, or dismiss a shortcut from the home page of my desktop. I did read that the 3 dots will appear if I hover over a shortcut. I tried that several times on different shortcuts but the 3 dots never appeared. Is there another way to edit, delete, or dismiss a shortcut? Or even better is there a way to restore the 3 dots?

I cleared my cookies, cache, history and data like I was told to when I connected a new router so all of my shortcuts have changed. A few that are there now I don't want and I do want to add several new ones.

Thank you for your help!

Asked by Muffers 5 8 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Download failed. Please check your connection.

Hi, I keep getting this error when I try to download any extension. I also get an automatic download fail as soon as I try to download anything. I have tried several solu… (மேலும் படிக்க)

Hi, I keep getting this error when I try to download any extension. I also get an automatic download fail as soon as I try to download anything. I have tried several solutions such as changing privileges to reinstalling firefox entirely. I have checked other browsers on my computer and it is just firefox.

Asked by courtneyakira 8 மாதங்களுக்கு முன்பு

Answered by jonzn4SUSE 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

PDF Editor options are unusable (grayed out)

I'm trying to use the built-in PDF Editor features after finding out about it but every PDF file I open with Firefox has the options grayed out (as shown in the screensho… (மேலும் படிக்க)

I'm trying to use the built-in PDF Editor features after finding out about it but every PDF file I open with Firefox has the options grayed out (as shown in the screenshot). What should I do to re-enable the features?

Asked by RxF 9 மாதங்களுக்கு முன்பு

Answered by RxF 9 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Can no longer detach tabs in Firefox 126

Tab detachment was working fine until updating to Firefox 126. Now the tabs cannot be moved, detached or dragged to another window. In about:config, browser.tabs.allowT… (மேலும் படிக்க)

Tab detachment was working fine until updating to Firefox 126. Now the tabs cannot be moved, detached or dragged to another window.

In about:config, browser.tabs.allowTabDetach is set to true

Suggestions?

Asked by Jeffery Small 8 மாதங்களுக்கு முன்பு

Answered by Jeffery Small 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

pages like nytimes.com and onepiecedle.net (wordle clone) break in 126

On nytimes.com some page elements are missing like pictures. the onepiecedle page just displays the background. In Pic1 you can see what the page is supposed to look lik… (மேலும் படிக்க)

On nytimes.com some page elements are missing like pictures. the onepiecedle page just displays the background.

In Pic1 you can see what the page is supposed to look like, here opened in chrome

In Pic 2 you can see what it looks like in Firefox 126

I tested troubleshoot mode, private window, etp off, private window, hardware accel. on/off, nothing seems to work.

Asked by jan237 9 மாதங்களுக்கு முன்பு

Answered by jan237 9 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Daily Mail Online

Have been unable to view readers comments for a number of weeks and can figure out how to fix. it is not all the time, like last night were available but not this morning… (மேலும் படிக்க)

Have been unable to view readers comments for a number of weeks and can figure out how to fix. it is not all the time, like last night were available but not this morning. All other browsers there is no issue including DuckDuckGo. Am using Ublock Origin, but have been using for years with no issue, even when turn off result the same.

Asked by chappie1 8 மாதங்களுக்கு முன்பு

Answered by jonzn4SUSE 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Firefox is very slow after reinstall - tried all troubleshooting

I have been using Firefox for many years and never had issues. Two days ago, I turned on my HP with Windows 10 and I got a pop up message something about Error Platform … (மேலும் படிக்க)

I have been using Firefox for many years and never had issues. Two days ago, I turned on my HP with Windows 10 and I got a pop up message something about Error Platform 126.0 XUL Runner is not compatible. I could not access Firefox, Google, or the internet. I uninstalled Firefox and reinstalled, but after that, everything runs very slow. Each time I go into a website, it can take up to over a minute to pull up! I cannot even delete email from my Gmail! It's piling up. Downloading can take over an hour! I checked all the trouble shooting forums in Mozilla and tried just about everything. I went back into "About:profile"s and created a new profile. It it did not make any difference. I also did a Firefox refresh. Did not help any. I went back into the profile I had before the XUL error because my bookmarks were there. Still slow. I cleaned out the cache, in both Firefox and my Windows 10. made no difference. I only have three extensions in Firefox. I don't know what else I can do to fix this. Also, my drivers and other software are automatically updated by Windows. My HP is only 2 years old as well. Everything was fine in Firefox until that XUL error message popped up and I had to uninstall and reinstall Firefox. That is when everything became agonizingly slow!

Update: My computer is barely usable anymore because of the Firefox issue. Having to wait for a minute or more for everything I do on the internet? I know it cannot be my computer itself because it is not even two years old yet. I may have to dump Firefox if I cannot get this fixed. I have Norton 360 and it is not malware or a virus. Firefox messed something up.

Asked by history1962 9 மாதங்களுக்கு முன்பு

Answered by history1962 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Fonts are broken in Firefox

Hello! I installed Firefox about a year ago, and for the entire duration it seems about 60% of the time the default fonts on various websites look weird (bold?). I have t… (மேலும் படிக்க)

Hello! I installed Firefox about a year ago, and for the entire duration it seems about 60% of the time the default fonts on various websites look weird (bold?). I have tried uninstalling/reinstalling Firefox, clearing the cache, etc. See attached images for examples. Help!

Asked by Adam Duckworth 8 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Multiple windows, check for closing multiple tabs is asked only on last window

Hey there, during work I often open two windows of Firefox to have more information visible on my two monitors. Unfortunately I sometimes forget that I have a second win… (மேலும் படிக்க)

Hey there,

during work I often open two windows of Firefox to have more information visible on my two monitors. Unfortunately I sometimes forget that I have a second window open, so I close only my "main" window and loose all tabs.

Is there a way to force Firefox to ask to close a window and loosing multiple tabs for every window open?

Right now this only happens for the last open window.

PS: I just found out about the keyboard shortcut of restoring a window (CTRL+SHIFT+N) recently. I would prefer a setting in my case.

Thanks in advance Fred

Asked by Fred 8 மாதங்களுக்கு முன்பு

Answered by Fred 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Firefox URL address bar suggestions window shifted upwards, covering the URL bar and bookmarks

Hello, Since a couple of weeks I'm facing a strange issue on my Firefox installed on my desktop (arch linux) where the suggestions window that appears when clicking the U… (மேலும் படிக்க)

Hello, Since a couple of weeks I'm facing a strange issue on my Firefox installed on my desktop (arch linux) where the suggestions window that appears when clicking the URL address bar, is shifted upwards and covers the address bar itself and the majority of the bookmarks. Has anyone experienced a similar issue and is able to point me towards some troubleshooting steps? Thanks!

Asked by Bryan Joshua Pedini 8 மாதங்களுக்கு முன்பு

Answered by TyDraniu 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Secure Connection Failed

I am getting "Secure Connection Failed", Ive seen literally hundereds of same error also exist here. Like most of default solution (which is below) did not work for me. M… (மேலும் படிக்க)

I am getting "Secure Connection Failed", Ive seen literally hundereds of same error also exist here. Like most of default solution (which is below) did not work for me. My laptops time is correct, And I highly doubt reddit and most of internet has issue with its security certificates. And other browser works just fine. So What is my solution other than immigrating to new browser?

https://support.mozilla.org/en-US/kb/secure-connection-failed-firefox-did-not-connect?as=u&utm_source=inproduct

Asked by sinan50563 8 மாதங்களுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Closed tabs not restoring

Hello, I closed my browser, expecting it to save my current tabs as it usually does. When I reopened it, the tabs were gone. They were important for me, and some of them … (மேலும் படிக்க)

Hello, I closed my browser, expecting it to save my current tabs as it usually does. When I reopened it, the tabs were gone. They were important for me, and some of them were pretty old so I can't find them in my history. I tried checking the "recently closed tabs" option, it didn't help. There was also no option to restore the previous session. Can you help me restore my lost tabs?

Asked by guynardia 8 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Tabs Lost, v.126.0.1

This morning I saw that images were not downloading within my GMAIL messages. Believing that something was wrong with my connection, I decided to give both my computers … (மேலும் படிக்க)

This morning I saw that images were not downloading within my GMAIL messages. Believing that something was wrong with my connection, I decided to give both my computers a restart. This concerns my Windows 10 64-Bit, on which I had both Edge and Firefox opened, both with multi-tabs. In Firefox I had my Google account open with other tabs. After shutting down both computers I left my apartment. The Windows 10 restarted on its own; but both browsers lost their tabs even though I set each to reopen the previous session. With Edge and function keys I was able to restore my previous session; but not with Firefox. about:sessionrestore was not available. The Profile folder did not show a backup for these lost tabs. I hate hunting for them in History because I am working on multiple projects and don't have time for this wasteful activity, which is why I set Startup to Open Previous Windows And Tabs. What option did I miss?

Now, we have more wasted time. I reopened as many tabs as I remembered opened during the session I could not restore. Now, the only tabs that reopened since are the ones I opened that have posts about restoring sessions. The tabs I reopened are lost even though I checked off Open Previous Windows And Tabs. This browser is performing worse as of today for some reason I am not aware. What changed? From what I see here, there was no MS Windows update that might have occurred when I shut down and lost the tabs. Could I have disrupted the tabs by using the right hand, top corner "X" to shut out of Firefox?

This is getting more and more whacked up! It seems that every time I reopen a tab within the Library, it opens it in the same tab, overlaying the previous tab I opened.

Asked by tightpurchaser 8 மாதங்களுக்கு முன்பு

Answered by tightpurchaser 8 மாதங்களுக்கு முன்பு