Showing questions tagged: Show all questions
  • Archived

Permit pop ups and cookies

I am trying to upload a document on the Supreme Court portal (UK) but it won't work I am told because my browser has to allow pop ups and cookies. Where can I get Firefo… (read more)

I am trying to upload a document on the Supreme Court portal (UK) but it won't work I am told because my browser has to allow pop ups and cookies. Where can I get Firefox to so allow?

Asked by jeffreydudgeon 6 months ago

Last reply by jonzn4SUSE 6 months ago

JavaScript

Trying to reactivate my Adobe CS6 software package and when I try to login to the Adobe website it tells me that to access the Adobe site I have to update my Mozilla brow… (read more)

Trying to reactivate my Adobe CS6 software package and when I try to login to the Adobe website it tells me that to access the Adobe site I have to update my Mozilla browser by adding JavaScript to the browser. Why is this required and is there any means to access Adobe using Firefox without complicating the browser by adding JavaScript?

Asked by Bill 1 month ago

Last reply by James 1 month ago

  • Locked

Need help with Chase bank online

Dear Ty: I appreciate your efforts to help me, unfortunately, it did not work. FireFox is still at 115.30.0. Any other thoughts? I thought there might be some software… (read more)

Dear Ty: I appreciate your efforts to help me, unfortunately, it did not work. FireFox is still at 115.30.0. Any other thoughts?

I thought there might be some software I could download to spoof the Chase system into thinking Firefox was a later version,

Thanks and regards,

LS

Asked by Lorraine Schlagheck 2 months ago

Last reply by Denys 2 months ago

Problem while copy Thunderbird profile

Hi, I use TB 115.18.0 (32-bit) on win 7 machine. In order to transfer it to another computer I tried to copy the profile to a new disk and it failed. An error message sta… (read more)

Hi, I use TB 115.18.0 (32-bit) on win 7 machine. In order to transfer it to another computer I tried to copy the profile to a new disk and it failed. An error message stated that "The destination you have specified does not exist". I manually copied the profile folder, and found that the problem occurs when attempting to copy the file (no file type is given. File name is printed bolt) as follows: mozilla profiles>cc739xtg.default>mail>local folders>unsent messages. (1,835,282 KB file) Unsent messages.MSF (6KB file) was copied with no problem. I did not find a way to open unsent messages file to read its content. Unsent messages does not show in my TB folders. As far as I understand there are no unsent messages in my TB accounts. 1. How to overcome the unsent messages file copy problem? 2. Can I try to delete both unsent messages and unsent messages.msf files without damage the profile? 3. How can I open unsent messages file to read its content? Thank you for your assistance. David

Asked by RDKS 5 months ago

Last reply by christ1 5 months ago

  • Archived

HELP!

My Thunderbird updated on me and my classic view with the Buttons is GONE. Does not look anything like the previous version.. How do I get my old view back! Please … (read more)

My Thunderbird updated on me and my classic view with the Buttons is GONE. Does not look anything like the previous version..

How do I get my old view back!

Please answer [email removed from public]

(Can't even find my WRITE button)

Please help!!!

AL

Asked by Al6286 2 years ago

Last reply by david 2 years ago

Browser

I was having problems with the firefox browser. This has never happened. I always use firefox and the company said that firefox was compatible to there sight but I coul… (read more)

I was having problems with the firefox browser. This has never happened. I always use firefox and the company said that firefox was compatible to there sight but I could not access.

Asked by mkoyoga 2 months ago

Last reply by jscher2000 - Support Volunteer 2 months ago

  • Solved
  • Archived

bug returning from hibernation: open firefox is ignored

In case anyone's interested, under Debian 12, when I resume from hibernation, if I have Firefox running as well as Tbird, if I click on a link in an email, the existing i… (read more)

In case anyone's interested, under Debian 12, when I resume from hibernation, if I have Firefox running as well as Tbird, if I click on a link in an email, the existing instance of Firefox is ignored and a new instance is opened. The first instance is in fact frozen -- it looks as it should but trying to change tabs or open a new tab is inactive. Seems I have to kill the open instance of FF, then if I click on a link in an email, FF pops up as it should with a new tab for the link, but the existing tabs are all there and all functional. It feels like a bug -- Tbird seems not to know that FF is already running.

Asked by rayandrews 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (read more)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Asked by Slouch 1 year ago

Answered by Slouch 1 year ago

  • Archived

Firefox won't update to version 127 on macOS 10.15.7

I am running macOS 10.15.7 and Firefox won't upgrade past ESR v. 115 to the "regular" version 127. Alternately, downloading the Firefox v. 127 installer and running won… (read more)

I am running macOS 10.15.7 and Firefox won't upgrade past ESR v. 115 to the "regular" version 127.

Alternately, downloading the Firefox v. 127 installer and running won't update ESR v. 115 nor will it import bookmarks or data from the previous version ESR 115. Firefox v. 127 installs and starts as if I am a new user without any update or import option so that all previous settings, passwords, and data from ESR v. 115 are lost.

Is there a work-around for the upgrade to keep continuity, settings, bookmarks, and data when migrating to v. 127? Thanks!

Asked by koolerking52 1 year ago

Last reply by James 1 year ago

  • Solved
  • Archived

Updated W10 to FF 116 and had cert problems

After updating a W10 laptop from 115 to 116 of FF the user started having problems with getting to different websites (sites they worked on/with regularly). The problem i… (read more)

After updating a W10 laptop from 115 to 116 of FF the user started having problems with getting to different websites (sites they worked on/with regularly). The problem is the cert DB. The doc I found says that it is cert8.db. Actually it is now cert9.DB.

What I had to do was go to task manager and kill a task that was holding the cert9.db file. Then I could rename it (cert9.old.db). Then restarted their laptop and FF came up and started fixing the cert file (as expected). This seems to have fixed their problem.

Asked by Wylbur 2 years ago

Answered by Wylbur 2 years ago

  • Archived

Spell Checker not working

The spell checker isn't working for me. I've found old answers to this: "You can see which dictionary is selected if you right-click in a text area and open the Language… (read more)

The spell checker isn't working for me. I've found old answers to this:

"You can see which dictionary is selected if you right-click in a text area and open the Languages sub menu. At least one dictionary should be installed and have a check mark to indicate that it is selected.

   open the "Add Dictionaries" link to install a dictionary if you do not have one. 

The spelling checker is enabled if [X] "Check Spelling" in the right-click context menu has a checkmark.

You can enable or disable spell checking globally:

   Options/Preferences -> General: Language and Appearance: "Check your spelling as you type" 

You can look here for dictionaries:

   https://addons.mozilla.org/firefox/language-tools/ 

Note that for spell check you need a dictionary. A language pack provides string translations for the user interface.

   https://support.mozilla.org/en-US/kb/use-firefox-interface-other-languages-language-pack 

You can check the layout.spellcheckDefault pref on the about:config page.

   http://kb.mozillazine.org/layout.spellcheckDefault "'


But I don't understand what most of this means!

I don't find 'language' because I don't know where to find a "text box containing more than one line" I'd have thought this was one, but the option does not come up here when I right click.

I realise this is probably me being dense, but can someone help in simple terms, please? Thanks.

Asked by janet25 2 years ago

Last reply by cor-el 1 year ago

  • Archived

Old man (86) needs help

While this note is probably the wrong way to ask for help for which I apologise, I am moving from Seamonkey to Firefox and Thunderbird. I have managed to get Firefox to … (read more)

While this note is probably the wrong way to ask for help for which I apologise, I am moving from Seamonkey to Firefox and Thunderbird. I have managed to get Firefox to work but don't know how to get my Seamonkey e-mail moved to Thunderbird.

If some kind soul could point me to a place or person where I can get detailed instructions on moving my e-mail from Seamonkey to Thunderbird, I would be incredibly appreciative. Again, I know I am probably asking this question in the wrong forum, but I have tried everything I can think of with no usable result. I ask that whoever reads understands getting up in years is frequently a difficult process. Oh yes, I go back to the early Netscape days as a user.

Thanks, in advance, for any and all assistance.

Asked by office809 1 year ago

Last reply by Matt 1 year ago

updated browser

Recently upgraded to windows 7, and upgraded firefox to version 115. Why am I getting notices that Windows Vista is no longer supported. [upgraded from vista to 7] … (read more)

Recently upgraded to windows 7, and upgraded firefox to version 115. Why am I getting notices that Windows Vista is no longer supported. [upgraded from vista to 7]

Asked by pamorjoe 5 months ago

Last reply by James 5 months ago

Browser out of date

I tried accessing Peacock but was told they only support version 127+. I checked my version is 115.xxx but says browser is up to date. What is going on? … (read more)

I tried accessing Peacock but was told they only support version 127+. I checked my version is 115.xxx but says browser is up to date. What is going on?

Asked by jimh714 4 months ago

Last reply by James 4 months ago

  • Solved
  • Archived

Searchbar no longer working

Hi. Whenever I click a button on the keyboard, the CTRL+F function comes up on it's own. I had previously disabled it because it ruins all shortcuts on youtube and with … (read more)

Hi.

Whenever I click a button on the keyboard, the CTRL+F function comes up on it's own. I had previously disabled it because it ruins all shortcuts on youtube and with tourettes, I often also get thrown around if I am reading long articles, because of misclicks.

Unfortunately I did the big mistake of updating, also with a tourettes-missclick, so my question is: 1) How do I remove the 'quick'-search function? I want the Ctrl+F bar to come up ONLY WHEN I CLICK ctrl+F, and I want it to go away again if I click ctrl+F again. I forget how to do it. 2) How do I remove all future update prompts? Given that it has been made so hard to configure firefox into something tolerable, I don't want to throw all my setup away with minor updates always thrown at me. It takes me a long time every time there's an update, I have to fix language and other stuff back again. It's just not worth it in time for me to use Firefox, if I have to make a setup so often. 3) Recommendations for the best version of Firefox to go back to and stay in for eternity, alternatively, browsers that does not change or add functions without first asking the user... (The answer is no, by the way, I don't want more new fancy functions)

Sorry for this nagging but I simply can't use my browser like this. It's just not working.

Asked by mettelolzjacobsen 2 years ago

Answered by zeroknight 2 years ago