顯示下列標籤的問題: 顯示所有問題
  • 已解決

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

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.

jose90 於 2 個月前 詢問

jose90 於 2 個月前 解答

  • 已解決

Number on Firefox Icon

The Firefox icon on my taskbar has a great big green number 1 plonked on it. It doesn't seem to relate to the number of windows I have open or the processes running. It's… (閱讀更多)

The Firefox icon on my taskbar has a great big green number 1 plonked on it. It doesn't seem to relate to the number of windows I have open or the processes running. It's there even when Firefox is closed. I thought it might be messages but I can't find those either. Its driving me nuts can you please tell me how to get rid of it? I'm running it in Ubuntu on a laptop.

megallen 於 1 週前 詢問

zeroknight 於 1 週前 解答

  • 已解決

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

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

arturoshaw 於 1 個月前 詢問

TyDraniu 於 1 個月前 解答

  • 已解決

Cannot add extensions to address bar area.

Hello! For some reason I can't add separate icons for extension quick menus to the address bar area and am only able to add the extensions "master" button which shows a l… (閱讀更多)

Hello! For some reason I can't add separate icons for extension quick menus to the address bar area and am only able to add the extensions "master" button which shows a list of extensions without going to the settings page. I've tried to go to customize toolbar to add the extension icons to the bar but none of them show up, and I know for a fact that the extensions have icons, I've added them to the bar on other computers.

Wafflasy 於 5 個月前 詢問

cor-el 於 5 個月前 解答

  • 已解決

No option to Uncheck Underline Links

Just updated to the latest firefox version 119, and noticed that the url links are now all underlined again. Checked the support page that says it can be undone in settin… (閱讀更多)

Just updated to the latest firefox version 119, and noticed that the url links are now all underlined again. Checked the support page that says it can be undone in settings, but when I opened up to the said setting page, there's no option to uncheck underline links. Where else can underline links be disabled?

kkhoon77 於 1 個月前 詢問

cor-el 於 1 個月前 解答

  • 已解決
  • 封存

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

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.

Blacklisted 於 2 年前 詢問

DB-1 於 2 年前 解答

  • 已解決
  • 封存

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

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?

hutcheonke 於 2 年前 詢問

cor-el 於 2 年前 解答

  • 已解決
  • 封存

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

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?

brian.pitchford 於 2 年前 詢問

TyDraniu 於 2 年前 解答

  • 被鎖定
  • 封存

New tab background color

Whenever I open a new tab using the + sign the background color is black. I have tried everything I can think of and what I found on the web. Nothing works I hate the … (閱讀更多)

Whenever I open a new tab using the + sign the background color is black. I have tried everything I can think of and what I found on the web. Nothing works I hate the black background. I want white with text in black.

The Mason 於 2 年前 詢問

cor-el 最近回覆於 1 年前

  • 已解決
  • 封存

Firefox hijacking Goolge search

I'm trying to completely turn off the address search bar function in Firefox. It' so annoying! I go to google. Start to type in the search bar on the page but all my typi… (閱讀更多)

I'm trying to completely turn off the address search bar function in Firefox. It' so annoying! I go to google. Start to type in the search bar on the page but all my typing ends up in the address bar. So frustrating! If I wanted to search from the address bar I wouldn't have gone to Google to do it. I DON'T want to search from the address bar EVER! So please don't say 'why don't you just..x,y or z'. I've managed to turn off all the address bar suggestions and whatnot with about a dozen different setting which is ridiculous. Turning off the rich results should fix everything but it doesn't. No mater what I try I cannot get text to appear in the Google search bar. So basically Firefox has stolen the functionality of the Google webpage for me. I've been using Firefox for a long time but lately I'm been questioning why a lot. Anyway, any suggestions to stop Firefox from hijacking my search would be appreciated.

bpereira 於 2 年前 詢問

Terry 於 2 年前 解答

  • 被鎖定
  • 封存

How to select camera?

On Firefox 90 on Ubuntu 20.04, when a site asks for camera and microphone permissions, it’s not possible to select any device anymore. It just shows the default camera an… (閱讀更多)

On Firefox 90 on Ubuntu 20.04, when a site asks for camera and microphone permissions, it’s not possible to select any device anymore. It just shows the default camera and the default microphone.

Earlier Firefox releases used to show a selection list for the camera and also another one for the microphone.

My default camera is the one built into the laptop and I would like to use an external one that has adequate picture quality.

Can you please help selecting a camera with the new Firefox?

gdukai.laptop 於 2 年前 詢問

UniQMG 最近回覆於 1 年前

  • 已解決
  • 封存

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

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.

Nick 於 2 年前 詢問

Nick 於 2 年前 解答

  • 已解決
  • 封存

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

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

sludge7051-x 於 2 年前 詢問

jscher2000 - Support Volunteer 於 2 年前 解答

  • 已解決
  • 封存

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

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.

Harster 於 2 年前 詢問

Harster 於 2 年前 解答

  • 已解決
  • 封存

How to remove (for good) FF message window after screenshot

After I take a screenshot -- using the very handy FF command that now sits on my address bar -- a message box opens in the bottom right of the screen that says, Duh, "you… (閱讀更多)

After I take a screenshot -- using the very handy FF command that now sits on my address bar -- a message box opens in the bottom right of the screen that says, Duh, "your shot was copied to the clipboard" and then gives instructions for pasting it. Although that seems to be fairly elemental information that is unnecessary, even if there is a good reason to keep it, must that message window always be in the same position? That is really a problem as it obscures one's ability to navigate on a page upon which he may be working. Look at the attachment. The FF window is covering the location where I want to put my cursor to work on that page that is in the background. In this case, I wanted to make sure the cursor was positioned in a different place for another screenshot I might put there (below the existing one).

Since I'm familiar with pasting or copying the screenshot and how to do that before this window opens, how can I remove for all screenshots, now and in the future, this window opening?

Thank you.

Txasslm 於 2 年前 詢問

Amelia 於 1 年前 解答

  • 已解決
  • 封存

non pervasive change to applications/actions

Hi read your article https://support.mozilla.org/en-US/kb/how-to-fix-preferences-wont-save I have changed the action for content type "mail to" to my default email app o… (閱讀更多)

Hi read your article https://support.mozilla.org/en-US/kb/how-to-fix-preferences-wont-save

I have changed the action for content type "mail to" to my default email app outlook. Despite this when I click on an embedded web page mail to link, the action reverts to the new office "mail" app which I do not want. When I get to the section in your article "User.js file overriding Firefox settings" as the next step in trying to fix the issue, and follow the instruction "Click the Firefox menu - and select Exit." then I am thrown out of the dialogue, it is not logical. Please advise as I don't even know if the user.js is causing the persistence?

Thanks Andrew

woodsterofarabia 於 2 年前 詢問

woodsterofarabia 於 1 年前 解答