Showing questions tagged: Show all questions
  • Išspręsta

How to completely disable website translation?

This question was already posted and badly answered in 2016. Now things have changed a lot and Firefox DO try to translate everything which is quite annoying to anyone kn… (read more)

This question was already posted and badly answered in 2016. Now things have changed a lot and Firefox DO try to translate everything which is quite annoying to anyone knowing more than a single language. No extensions related. I need to completely disable that. My firefox is up to date: 118.0.1 (64-bit).

Thank you Arturo

Asked by arturoshaw Prieš 2 mėnesius

Answered by TyDraniu Prieš 2 mėnesius

  • Išspręsta

How do I disable the new built-in translator?

I need to disable this horrible translator that is now showing up on top of every page I visit, It keeps showing up even after choosing a translation or disabling transla… (read more)

I need to disable this horrible translator that is now showing up on top of every page I visit, It keeps showing up even after choosing a translation or disabling translations for that language. That is probably a bug, but I don't want to wait for a fix, I need to be able to see the pages I visit completely, this thing prevents me from clicking buttons and and is really anoying.

This is the built-in translation feature since I do not use any translation plugins, and started showing up after an upgrade.

Asked by jose90 Prieš 2 mėnesius

Answered by jose90 Prieš 2 mėnesius

  • Išspręsta

Most of extensions icons do not show on taskbar (Firefox 119, Windows 10)

Hello, As I said: fresh install of FF 119, only Privacy Badger and uBlock Origin icons are showing on the taskbar. I tried TyDraniu tip "Click the jigsaw puzzle icon, … (read more)

Hello,

As I said: fresh install of FF 119, only Privacy Badger and uBlock Origin icons are showing on the taskbar. I tried TyDraniu tip "Click the jigsaw puzzle icon, then right-click on an extension, then select Pin to toolbar" but with the right click there is no such option as "Pin to toolbar".

What's going on?

https://support.mozilla.org/en-US/questions/1411702#answer-1577258

Asked by FranDav Prieš 1 mėnesį

Answered by cor-el Prieš 1 mėnesį

  • Išspręsta

Extensions not showing up in toolbar or customize menu

Any extensions I install suddenly don't show up in my toolbar or the customization menu anymore, so I also can't drag them there manually. Deleting the extensions and re… (read more)

Any extensions I install suddenly don't show up in my toolbar or the customization menu anymore, so I also can't drag them there manually.

Deleting the extensions and re-installing them didn't work, neither did deleting the extensions folder itself.

Does anyone know how I can fix this? I've attached a screenshot of the customization menu and extensions menu below.

Thanks :)

Asked by Aci Prieš 5 mėnesius

Answered by Terry Prieš 5 mėnesius

  • Išspręsta

How do I turn off web translation in Firefox 118.0.1??

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in pre… (read more)

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in preferences, it shows up on every page I visit.

Asked by gjensse Prieš 2 mėnesius

Answered by TyDraniu Prieš 2 mėnesius

  • Išspręsta

Problem with uninstalling addon

Hi, i have problem with uninstalling uBlock Origin i cant remove them from extension tab. I tried refreshing firefox, reinstalling, opening firefox with troubleshoot mode… (read more)

Hi, i have problem with uninstalling uBlock Origin i cant remove them from extension tab. I tried refreshing firefox, reinstalling, opening firefox with troubleshoot mode and still nothing i dont know why is so difficult.Even when i reinstalling firefox this addon onstalling by itself even when im not logged in.Please help me. Thanks

Asked by kuba.chominski69 Prieš 1 mėnesį

Answered by kuba.chominski69 Prieš 1 mėnesį

  • Išspręsta
  • Archyvinta

What content is required in userChrome.css to move the tabs bar under all other bars?

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does N… (read more)

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does NOT move the Tabs Bar below the Bookmarks Bar. The Bookmarks Bar appears to be overwritten and blank, and occupies space below the Menu Bar, Navigation Bar, and Tabs Bar. This empty space separates the three bars which are implemented and the content of the currently-selected tab below it.

Currently, my userChrome.css file is a copy posted by Cor-el (?):


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: below nav-bar - fixed for 108+,113+ */

/* ROOT -variables */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;
  
  --tab-min-height: 25px !important; /*override density*/
  --tab-min-width:  80px !important; /*override default*/
}

/* TABS: below nav-bar - no longer needed in 113+ *//*
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {
  -moz-box-ordinal-group: 10 !important;
  order: 10 !important;
}
#TabsToolbar {
  -moz-box-ordinal-group: 1000 !important;
  order: 1000 !important;
}
*/

/* TABS: position */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

/* for 107 and lower - disable this rule in 108 and newer *//*
#tabbrowser-tabs {
  width: 100vw !important;
} */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  position: relative !important;
}

/* TABS: HEIGHT */
#tabbrowser-tabs,
#tabbrowser-arrowscrollbox,
#tabbrowser-tabs .tabbrowser-tab {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#tabbrowser-tabs,
.tab-stack,
.tab-content {
  height: var(--tab-min-height) !important;
}

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

/* indicators - hide  */
.private-browsing-indicator {display: none !important;}
.accessibility-indicator    {display: none !important;}

/* window controls in full screen - hide*/
#TabsToolbar #window-controls {display: none !important;}

/* caption buttons on tab bar - hide */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar
 .titlebar-buttonbox-container {display: none !important;}
________________________________________________________________________________________________

Evidently, the text editor for this website does several things to the above original text that, frankly, seem unnecessary and undesirable. The .CSS file is just an unformatted text file, so what is the problem with simply copying its contents and pasting it in to the body of this post?

Which is also to say that I do NOT have a clue as to what any line in the file is meant to do, what effect it has, why it is even in the file at all, or why it is written in the way that it is. So DO NOT tell me that I "CAN" create a Cascading Style Sheet on my own when I cannot even modify one that has been provided.

On the face of it, something is missing from the above CSS text. What change needs to be made to the above content so that the Bookmark Bar will appear between the Navigation Bar and the Tabs Bar??

Thank-you very much for your time and attention to this request for assistance.

Asked by Blacklisted Prieš 2 metus

Answered by DB-1 Prieš 2 metus

  • Išspręsta
  • Archyvinta

Bookmarks Menu - why does the 'Manage Bookmarks' entry appears twice?

Thanks to Proton expanding my Bookmarks Menu off the bottom of the screen, I was re-arranging my bookmarks folders. While wondering which of my folders I had to prune, I… (read more)

Thanks to Proton expanding my Bookmarks Menu off the bottom of the screen, I was re-arranging my bookmarks folders. While wondering which of my folders I had to prune, I noticed another in-built redundancy. The entry "Manage Bookmarks Ctrl+Shift+O" appears twice, at the top and the bottom of the menu. Incidentally the bottom entry is misaligned (Firefox v89 on Windows).

Is there a particular reasons for this duplication? Can I remove either of these entries?

Asked by hutcheonke Prieš 2 metus

Answered by cor-el Prieš 2 metus

  • Išspręsta
  • Archyvinta

Multi-Account Containers "Open this site in your assigned container?"

One time, when using MAC I accidentally set a website to always open in a different container. Now any time I attempt to launch this website, I receive the MAC prompt "Op… (read more)

One time, when using MAC I accidentally set a website to always open in a different container. Now any time I attempt to launch this website, I receive the MAC prompt "Open this site in your assigned container?", where I have two options: Open in Current Container and Open in Assigned Container. There is also a checkbox labeled "Remember my decision for this site", however even if I tick this checkbox and select Open in Current Container, I still get this same prompt every subsequent time I visit this website.

Asked by Nick Prieš 2 metus

Answered by Nick Prieš 2 metus

  • Išspręsta
  • Užrakinta
  • Archyvinta

CSS help needed: how do I recolor bookmark drop-down menus?

So I've got Proton UI forced on me today in 92.0 update and accordingly had to spend my entire evening trying to repair all of the damage. So far I've managed to fix menu… (read more)

So I've got Proton UI forced on me today in 92.0 update and accordingly had to spend my entire evening trying to repair all of the damage. So far I've managed to fix menu spacing and the way tabs look all while not breaking previous walls of text in userChrome.css meant to fix even older UI problems. Still one thing I failed to find any solutions to is the bookmark drop-down menus color issue. Those menus used to be gray, but now they are all bright white, which to me is super annoying. Any tips on how to fully recolor those?

Asked by jbrandom2 Prieš 2 metus

Answered by cor-el Prieš 2 metus

  • Išspręsta
  • Archyvinta

Dark mode in all firefox browsing sites do not work now

Hi, I am using the dark mode in firefox which is god sent boon to persons having glaucoma, with dark mode in firefox and dark reader add on. This was going well and after… (read more)

Hi, I am using the dark mode in firefox which is god sent boon to persons having glaucoma, with dark mode in firefox and dark reader add on. This was going well and after a recent update, I could not find it working. The dark mode is enabled and dark reader was there, but the browsing pages only shows in white. Has firefox changed anything recently to have this issue? If I miss something would the experts say, how to get back my dark browsing experience in all sites. If I find anything not visible in some sites, I used to go the windows properties and change the contrast theme to windows basic blue theme and then switched back to dark theme. this was helping the glaucoma persons very much. please, say how to solve this problem

Asked by jrj Prieš 2 metus

Answered by jscher2000 - Support Volunteer Prieš 2 metus

  • Išspręsta
  • Archyvinta

New msn.com problem in Firefox

msn.com will no longer allow any of my browser extensions to block display of the home page search box and other items on that same horizontal level in Firefox. The tool… (read more)

msn.com will no longer allow any of my browser extensions to block display of the home page search box and other items on that same horizontal level in Firefox. The tools to select elements to block only select the entire page. In IceDragon, I can still block individual elements. I complained to msn about that.

Asked by Harster Prieš 2 metus

Answered by Harster Prieš 2 metus

  • Išspręsta
  • Archyvinta

search box on Firefox home page

Trying to use the seach box in the centre of the Firefox homepage (google search engine) .. everything I type goes up to the address bar . Tried changing settings - I se… (read more)

Trying to use the seach box in the centre of the Firefox homepage (google search engine) .. everything I type goes up to the address bar . Tried changing settings - I see there's a search box option in the 'tool bar' which looks to be up at the side of the address bar. cant understand why we need another one as well as the one in the centre.

Also by turning off suggestions and not choosing the 'search box option in the 'tool bar' , the address bar is now only accepting URLs so searching isnt working.

So ..1. Is the search box in the centre no use?

        2.  Does search work with all suggestions turned off?

Asked by brian.pitchford Prieš 2 metus

Answered by TyDraniu Prieš 2 metus

  • Išspręsta
  • Archyvinta

Where did Page Setup / Margins & Header/Footer go?

I'm using Firefox 85.0.2 . . . I was doing this (below), to customize my header and footer, but in this version of FF, I no longer see this in Options - only in: about:c… (read more)

I'm using Firefox 85.0.2 . . . I was doing this (below), to customize my header and footer, but in this version of FF, I no longer see this in Options - only in: about:config . . . keyword "footer" . . . there, I would have to change it for 5 different ways of printing (to printers or to PDF)

I need to get rid of printing the URL in the footer - many times, it's too long, and I don't need it.

Where did the Page Setup option go?

I see in the current Print Options, you have to go to - More Settings / Margin / Custom - to see those. Why would they put this so many levels down?

It used to be: File / Page Setup / Margins & Header/Footer . . . "Customize" Headers & Footers:

Option 1 (left) . . . there are two leading spaces:

 > > &T
 > > &U . . . &D . . . &PT

Option 2 (left) . . . get rid of the ">"s, and just have the two leading spaces:

 &T
 &U . . . &D . . . &PT

Asked by sludge7051-x Prieš 2 metus

Answered by jscher2000 - Support Volunteer Prieš 2 metus

  • Išspręsta
  • Archyvinta

Keep extensions separate in same Firefox account on different machines

I use a Firefox account on two different machines- one is a Mac and the other is a Windows machine. I have some programs installed on the Windows machine that installed a… (read more)

I use a Firefox account on two different machines- one is a Mac and the other is a Windows machine. I have some programs installed on the Windows machine that installed an extension for Firefox. Those programs are not Mac compatible but because of the same account, those extensions were copied to the Firefox installation on Mac. I was wondering if there is a way to isolate the extensions to just the windows installation? Thanks!

Asked by Sunny Prieš 2 metus

Answered by FredMcD Prieš 1 metus

  • Išspręsta
  • Archyvinta

about:preferences#home : New Tabs

"Homepage and new windows" setting allows "Custom URLs" as an option. "New tabs" setting allows only "Firefox home page (default)" or "Blank page" Why is there no longer… (read more)

"Homepage and new windows" setting allows "Custom URLs" as an option. "New tabs" setting allows only "Firefox home page (default)" or "Blank page"

Why is there no longer an option in "New tabs" for a "Custom URL" ??

Is this just another of those program designers' decisions of a less-is-more "improvement" . . . ? Well, it's not.

How can I return to having my Homepage URL also designated for new tabs?

Thank you.

Asked by Hikermann Prieš 2 metus

Answered by cor-el Prieš 1 metus

  • Išspręsta
  • Archyvinta

Credit card autofill stopped working

I am in the USA. Every time, on any page or website that I need to provide credit card info, when I click in the box to type in the CC numbers/expiration date/CCV, a win… (read more)

I am in the USA. Every time, on any page or website that I need to provide credit card info, when I click in the box to type in the CC numbers/expiration date/CCV, a window pops up as it should (for auto-fill) with my credit card information. In that window, I can scroll over the different credit cards, click on the one I want to use, and it SHOULD auto-fill into the box where the numbers would normally be typed in. Now, the window still pops up and I can scroll over the credit cards and choose one, but when I click on any of the particular credit cards, the auto-fill doesn't work. The boxes in "settings" are checked to allow auto-fill. It worked for months, then just stopped. Thanks for your assistance!

Asked by dougumbarger Prieš 2 metus

Answered by Tad Tweed Prieš 1 metus

  • Išspręsta
  • Archyvinta

How to stop this animation?

I am highly distractable by screen movements of any kind, and prefer that nothing on my screen moves unless I ask it to--no autoplay or running ribbons of text or even sl… (read more)

I am highly distractable by screen movements of any kind, and prefer that nothing on my screen moves unless I ask it to--no autoplay or running ribbons of text or even slideshows with pictures slipping past each other unless I specifically click to make something move. But none of the adjustments I've found in about:config have stopped the snowflakes that drift down across the screen on

https://cutetropolis.com

during December. I'd like to stop them in my viewing but not be the killjoy that demands they be taken down for everyone, because lots of people actually like them.

Any suggestions on what setting to tweak for this?

FF beta channel, up to date

Asked by Foxfree99 Prieš 2 metus

Answered by jonzn4SUSE Prieš 1 metus