Disabling update nag screen

I've got a really old MacBook Pro that's still running 10.13, and Firefox has started displaying a nag screen telling me that this version is no longer supported, and to … (xem thêm)

I've got a really old MacBook Pro that's still running 10.13, and Firefox has started displaying a nag screen telling me that this version is no longer supported, and to install a newer version of MacOS.

Is there something in the advanced settings that will stop it nagging me? I now know it's not going to get any more updates, there's no need to keep telling me every 20 minutes...

(Note to the devs: a "don't remind me again" checkbox would be nice for things like this!)

Được hỏi bởi julian.templeman 1 ngày trước

Lần cuối trả lời bởi James 17 giờ trước

Mozilla vs Dementia & Alzheimers - where is the User Interface that remains exactly the same for 25 years?

The fundamental nature of dementia and Alzheimers is that the victim cannot remember new information. But for some time they can recall information and processes which w… (xem thêm)

The fundamental nature of dementia and Alzheimers is that the victim cannot remember new information. But for some time they can recall information and processes which were learned previously.

After some years, they will be unable to utilize any of the technology they depend upon - they will not be able to turn on their device to make a phone call. They won't be able to locate the menu they need to utilize. Because all that changes CONSTANTLY. They will become helpless sooner than necessary. They will strain their families and the taxpayer sooner than necessary.

The only solution is for software makers to roll out, every 5 or 6 years, a "stable version" where the user interface will not change one iota for 25 years. Of course, they must still make internal updates for security and changes in the Internet Protocol layer system. The portions of the code that deal with the user must be modular to be plugged into newer hardware and communication protocols.

When someone is diagnosed with memory impairment, they will have time to learn the latest Stable Version.

This is a very fundamental change to business as usual, but there is no other solution other than continuing to balloon the cost of elder car.

In the old days this would be a call for an RFP...

Được hỏi bởi FireFoxSucks 10 giờ trước

Lần cuối trả lời bởi Paul 10 giờ trước

OneDrive workbook problem

So I have an Excel workbook in my onedrive from MS, It was working fine on my firefox browser in my Ubuntu OS, last week it started to delete my cell's information whenev… (xem thêm)

So I have an Excel workbook in my onedrive from MS, It was working fine on my firefox browser in my Ubuntu OS, last week it started to delete my cell's information whenever I pressed the enter, tab or arrow keys, I contacted the MS support and they get me to opened the same file on a chrome browser and worked fine... I still want to use my firefox browser but this problem is very annoying, please help me sort it out!!!

Được hỏi bởi ricardocrbb 16 giờ trước

Lần cuối trả lời bởi jonzn4SUSE 13 giờ trước

Importing Bookmarks from Chrome via html

I followed instructions for adding bookmarks from html file. Got to "import from html" . I can see the html file I want to access, but when I push "open" nothing happen… (xem thêm)

I followed instructions for adding bookmarks from html file. Got to "import from html" . I can see the html file I want to access, but when I push "open" nothing happens.

Được hỏi bởi bceccoli 15 giờ trước

Lần cuối trả lời bởi cor-el 14 giờ trước

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (xem thêm)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Được hỏi bởi Slouch 16 giờ trước

Lần cuối trả lời bởi cor-el 15 giờ trước

Tried installing Keeppassxc--not sure if correst name

Hello, One of my email accounts Yahoo or Gmail appears to have been hacked. I received two phishing emails this week --3 if you count the last one who said she was call… (xem thêm)

Hello,

 One of my email accounts Yahoo or Gmail appears to have been hacked. I received two phishing emails this week --3 if you count the last one who said she was calling on behalf of Medicare/Social Security and All members could get a preloaded card for several hundred dollars. I knew there was a plan to help certain folks, but it was not available to everybody. I asked her for the name of the plan and she hung up. the webpage she sent me to first or told me to go there where I could talk to a licensed agent. Do people who answer the phone have a license like insurance salespeople? Anyway, they had copied the govt. the site is right up the US sea.

Okay, just an example so I decided to try that KeeopassXC program you were offering but I could never get it to complete.

but it did something as I can't use my password They cancel your account if you tell them the truth --better just to say I need help resetting my password. They then ask you to send them a picture ID as in Driver's License. Noway I am going to do this --so I have at least some pretty valuable info if I can't get in.

Ny first time writing here - if any response please direct suggestions to pke225x2gmail or I guess I will check here. Don't know how you put people with possible solutions to seeker of HELP.

Sincere Thanks Paul

Được hỏi bởi Paul Ellis 5 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 16 giờ trước

Changing the URLB on click behavior

I would like the address bar to show what it would show when you type a "?" just by clicking. It's a default feature in chrome, I know, mentioning a competitive browser a… (xem thêm)

I would like the address bar to show what it would show when you type a "?" just by clicking. It's a default feature in chrome, I know, mentioning a competitive browser as an example is kind of a no no, but it's the only example I can think of.

Được hỏi bởi Sod 1 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 16 giờ trước

Lost bookmarks

A couple of months ago, I suddenly lost all my saved bookmarks, plus the ones on my toolbar. Strange thing is, all the folders and sub-folders I created are still there, … (xem thêm)

A couple of months ago, I suddenly lost all my saved bookmarks, plus the ones on my toolbar. Strange thing is, all the folders and sub-folders I created are still there, they're just all empty.

Can I get them back somehow? I've been collecting them for years so can't replace them all!

Firefox 125.2 iMac OS x10.15

Được hỏi bởi amanda52 21 giờ trước

Lần cuối trả lời bởi cor-el 16 giờ trước

after updating newest version of Firefox the option to restore previous windows opened does not work

after updating newest the version of Firefox the option to" restore previous windows opened " does not work. Is there a work around when I close my browser and then reop… (xem thêm)

after updating newest the version of Firefox the option to" restore previous windows opened " does not work. Is there a work around when I close my browser and then reopen the browser so that all the tabs that I had opened before closing my browser return as if I never left?I went into my setting and have the "open previous tabs" is checked. I even restarted my browser but nothing simple seems to work. Thanks in advance

Được hỏi bởi Jane Boyle 1 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 16 giờ trước

Browser issue with Microsoft Outlook

Hello, My name is Grey, and I'm experiencing an issue using Firefox as a browser to open my Outlook mail. For the past three days I have not been able to open any emails… (xem thêm)

Hello,

My name is Grey, and I'm experiencing an issue using Firefox as a browser to open my Outlook mail. For the past three days I have not been able to open any emails as a network error screen appears. Using other devices and other browsers like Edge, the emails open fine, so it is not actually a network issue. This problem only occurs using Firefox, and specifically with Outlook emails. Everything else functions fine and I have not made any changes, besides the regular Firefox update. My computer is also up to date.

What can I do about this issue? I appreciate the advice,

grey

Được hỏi bởi AshenLion 22 giờ trước

Lần cuối trả lời bởi cor-el 18 giờ trước

setting up Firefox on reset computer

I reset a computer, deleting all my files. I want to use, as I do elsewhere, Firefox as my browser. And though I signed into Firefox using my old credentials, none of my … (xem thêm)

I reset a computer, deleting all my files. I want to use, as I do elsewhere, Firefox as my browser. And though I signed into Firefox using my old credentials, none of my bookmarks are there. How do I complete this setup?

Được hỏi bởi Bobg 1 ngày trước

Lần cuối trả lời bởi cor-el 18 giờ trước

Firefox print to PDF now inserts huge numbers of blank pages in the pdf at random places

For years, I have used print to pdf in Firefox to generate pdf files of long web pages. It always worked. But lately, I noticed that huge numbers of blank pages are ins… (xem thêm)

For years, I have used print to pdf in Firefox to generate pdf files of long web pages. It always worked. But lately, I noticed that huge numbers of blank pages are inserted in the pdf file, seemingly at random. I looked at the HTML source, and could not see anything that obviously triggers the blank pages. For example, a web page that ought to print to about 35 pages generates a file of more than 600 pages, with most of them blank.

I can use Microsoft Edge as an alternative, but pdf files from that browser strip out all the color, and are nevertheless super huge, about ten times larger than the ones from Firefox. E.g. the file mentioned above, about 35 pages, would be about 1.3 MB from firefox, and 12 MB from Edge. So getting the file from Firefox would be nice.

Is there a reason why print to pdf is behaving in this strange way, and anything I can do about it?

Được hỏi bởi argnotagain 1 tuần trước

Lần cuối trả lời bởi markwarner22 19 giờ trước

Recreating deleted drafts an emails through carbonite

I lost emails in my inbox and draft folders. Contacted carbonite to restore and they asked if emails in these folders were "physical" files that got deleted and if so wha… (xem thêm)

I lost emails in my inbox and draft folders. Contacted carbonite to restore and they asked if emails in these folders were "physical" files that got deleted and if so what type of file the were ( such as MSF). Can some someone help please?

Được hỏi bởi Tim Williams 23 giờ trước

Lần cuối trả lời bởi markwarner22 20 giờ trước

Disabling 'Show animations in Windows' changes the way text is shown on some websites.

When I turn off the windows animations in Windows 10 the font on Twitter.com changes somewhat. I believe it is altering the character spacing/scaling. I have not had thi… (xem thêm)

When I turn off the windows animations in Windows 10 the font on Twitter.com changes somewhat. I believe it is altering the character spacing/scaling.

I have not had this behavior on other browsers (Brave, Edge, Chrome & OperaGX tested). I have not noticed this on other websites, but I also haven't really looked.

Windows version 22H2 (OS Build 19045.4291) Firefox version 124.0.2

Images provided are with them off, then on

Steps to recreate 1. Load a tweet (tweet in the images: https://twitter.com/FedeItaliano76/status/1779855670432408011) 2. Turn off window animations (settings->display->show animations in windows->Off) 3. Reload the Tweet

This is not a critical issue for me, but I think it's worth mentioning

Được hỏi bởi SiwelTheLongBoi 2 tuần trước

Lần cuối trả lời bởi zeroknight 1 ngày trước

extension is not recognized in browser

I have tried to install my password manager Sticky Password several times to the firefox browser. The current version of sticky password is installed and running but the … (xem thêm)

I have tried to install my password manager Sticky Password several times to the firefox browser. The current version of sticky password is installed and running but the firefox browser leaves me a message saying it is not installed or running.

Được hỏi bởi jake310 1 ngày trước

Lần cuối trả lời bởi zeroknight 1 ngày trước