Hiển thị các câu hỏi được đánh dấu: Xem tất cả các câu hỏi
  • Đã giải quyết

Disable New Translation tool

I updated to the latest version of firefox and am not pleased with the translation tool automatically detecting the wrong language on sites. Is there any way to fully dis… (xem thêm)

I updated to the latest version of firefox and am not pleased with the translation tool automatically detecting the wrong language on sites. Is there any way to fully disable it? I currently have no languages installed yet it pops up offering to "translate".

Được hỏi bởi EarlofBirds 5 tháng trước

Được trả lời bởi jscher2000 - Support Volunteer 5 tháng trước

  • Đã giải quyết

Hide or show system window title bar

I have a new PC running Kubuntu 22.04, with Mozilla Firefox 120.0.1 (64 bit) installed. Standard, the system window title bar was hidden. But I wanted access to the "Mo… (xem thêm)

I have a new PC running Kubuntu 22.04, with Mozilla Firefox 120.0.1 (64 bit) installed. Standard, the system window title bar was hidden. But I wanted access to the "Move to desktop" menu and wanted the title in the title bar. So, in "Customize toolbar" I checked "Title bar". The title bar reappeared, but a complete border along the Firefox window became inaccessible, and when clicking in that zone, it effectively clicked in the window behind. In particular, the complete menu bar is inaccessible, as well as the scroll bar on the left and in the bookmarks sidebar the fold/unfold. And Mozilla Thunderbird 115.5.0 has the same annoying behaviour. Even when hovering over some menus in the Mozilla window, you can sometimes see reactions from the window under the Mozilla window. On older Kubuntu computers (up to 18.04) with older versions of Firefox (up to 113.0.2) and Thunderbird (up to 102.11.0) I do not have that problem. How can I get at the same time access to both the system title bar and the menu bar ?

Được hỏi bởi th.pauwels 4 tháng trước

Được trả lời bởi th.pauwels 4 tháng trước

  • Đã giải quyết

IE Tab extension...

There used to be an extension called "IE Tab". It allowed you to right click on the link, and open the site in a tab, using Internet Explorer, for sites that didn't work … (xem thêm)

There used to be an extension called "IE Tab". It allowed you to right click on the link, and open the site in a tab, using Internet Explorer, for sites that didn't work properly in Firefox. I was wondering if anybody knows of any similar extension that would do the same for Edge? I can't open Twitter (X) using Firefox anymore, but I can open it using Edge. I don't like Edge (obviously), but I have no choice. Thanks in advance!!!

Được hỏi bởi carlrgoodwin 3 tháng trước

Được trả lời bởi cor-el 2 tháng trước

  • Đã giải quyết

Stop Auto Open After Download

Hi, I am a student, who tend to mass download files at once. The annoying part is that after every download, firefox automatically opens up the downloaded file in a new … (xem thêm)

Hi,

I am a student, who tend to mass download files at once. The annoying part is that after every download, firefox automatically opens up the downloaded file in a new tap. How can I disable automatically open files after download?

Thanks.

Được hỏi bởi z7798xxzzz 5 tháng trước

Được trả lời bởi Terry 5 tháng trước

  • Đã giải quyết

All Browser Themes Are Off-Center For Seemingly No Reason

What the title says, and unfortunately I'm not sure why. If a theme isn't perfectly looped, it's...really noticeable. And I hate how ugly some themes turn out as a result… (xem thêm)

What the title says, and unfortunately I'm not sure why. If a theme isn't perfectly looped, it's...really noticeable. And I hate how ugly some themes turn out as a result. I don't want to start sticking my hands directly into firefox's advanced settings, since I don't know much about them and don't want to risk accidentally deleting or messing with something important, but I'd really like to get this fixed somehow... Is it just the themes I'm picking? Are they supposed to all be skewed off to the side? Or is something off with my browser? Maybe my resolution's weird or something...?

Được hỏi bởi isshuexplorer101 3 tháng trước

Được trả lời bởi cor-el 3 tháng trước

  • Đã giải quyết
  • Đã lưu trữ

how to copy userchrome.css to installer

Copying userchrome.css to all profiles during installation of Firefox.

I want to copy "chrome/userchrome.css" automatically when a profile gets created.

Được hỏi bởi yash292k11 2 năm trước

Được trả lời bởi cor-el 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

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… (xem thêm)

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.

Được hỏi bởi Blacklisted 2 năm trước

Được trả lời bởi DB-1 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Firefox Print Tab Modal Print Preview

Hello, the newest update to version 97.0 was run automatically. Afterwards the new print preview appears although I have it disabeled in about:config (print.tab_modal.en… (xem thêm)

Hello,

the newest update to version 97.0 was run automatically. Afterwards the new print preview appears although I have it disabeled in about:config (print.tab_modal.enabled --> false). I cannot get rid of it. It is very annoying as I cannot print my labels with that menu and always have to click once more to do so. Does anyone has a fix for this?

Thanks in advance,

Thomas

Được hỏi bởi da_hegger 2 năm trước

Được trả lời bởi jscher2000 - Support Volunteer 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Remove Shortcuts when hiding menu items

I'm hiding menu items using userChrome.css with option “toolkit.legacyUserProfileCustomizations.stylesheets” set to “true”. So I am hiding some menu items like for examp… (xem thêm)

I'm hiding menu items using userChrome.css with option “toolkit.legacyUserProfileCustomizations.stylesheets” set to “true”.

So I am hiding some menu items like for example

  1. menu_find { display: none !important }

however though the menu item is gone how do I get rid of the ctrl-F menu shortcut...

I have many such menu items to remove so I need a generic solution to override the short-cut icons associated with the menu items I want to remove

Được hỏi bởi ikhalil 2 năm trước

Được trả lời bởi ikhalil 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

How to allow web page to override a keyboard shortcut

How to allow web page to override a keyboard shortcut. Currently firefox picks up the shortcut instead of the webpage... For example I have an webpage that detects ctrl-… (xem thêm)

How to allow web page to override a keyboard shortcut. Currently firefox picks up the shortcut instead of the webpage...

For example I have an webpage that detects ctrl-shift-h which worked fine in version 56 but now in version 96 it brings up a "Show All History" dialog

I an doing many such things so I looking for a generic way to override firefox keyboard shortcuts

Được hỏi bởi ikhalil 2 năm trước

Được trả lời bởi ikhalil 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Big yellow dotted border on history page.

I don't know if it is a wrong manipulation or an update feature, but since today when i select a link in the history library, it is now highlighted with big yellow dotted… (xem thêm)

I don't know if it is a wrong manipulation or an update feature, but since today when i select a link in the history library, it is now highlighted with big yellow dotted borders instead of the usual subtle black/white single pixel sized dots. How to revert back to the small borders?

Được hỏi bởi thor94 2 năm trước

Được trả lời bởi cor-el 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Homepage randomly switches to MSN?

I have noticed recently that every week or so my Firefox browser will randomly change my homepage directory to the landing page / search for MSN, which is baffling, since… (xem thêm)

I have noticed recently that every week or so my Firefox browser will randomly change my homepage directory to the landing page / search for MSN, which is baffling, since it is obtrusive and anti-Mozilla to me.

If y'all are sneaking it in for that sweet ad revenue, I understand, but I would donate to avoid this issue.

Otherwise Firefox / Thunderbird are awesome, and I appreciate all that you do!

Cheers, Elliot

Được hỏi bởi deanel018 2 năm trước

Được trả lời bởi jscher2000 - Support Volunteer 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Firefox icon change no longer works

I use to be able to change firefox icons by adding these files in Firefox under the browser directory chrome/icons/default/BrowserPreferences.ico chrome/icons/default/Cu… (xem thêm)

I use to be able to change firefox icons by adding these files in Firefox under the browser directory

chrome/icons/default/BrowserPreferences.ico chrome/icons/default/CustomizeToolbarWindow.ico chrome/icons/default/default.ico chrome/icons/default/downloadManager.ico chrome/icons/default/main-window.ico chrome/icons/default/openLocation.ico chrome/icons/default/places.ico chrome/icons/default/printPageSetupDialog.ico chrome/icons/default/TabMIxPreferences.ico chrome/icons/default/unknownContentType.ico chrome/icons/default/viewSource.ico chrome/icons/default/Wizard.ico

It worked in version 56 but now in version 97 and this no longer works?

Được hỏi bởi ikhalil 2 năm trước

Được trả lời bởi TyDraniu 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

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… (xem thêm)

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

Được hỏi bởi sludge7051-x 3 năm trước

Được trả lời bởi jscher2000 - Support Volunteer 3 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Saving files instead of opening and saving in TEMP folder!

Before the recent 1-2 updates, pdfs,pictures and .torrent meta files used to get saved in temp folder which I LOVED very much. Recently these are getting save in my down… (xem thêm)

Before the recent 1-2 updates, pdfs,pictures and .torrent meta files used to get saved in temp folder which I LOVED very much. Recently these are getting save in my download folder instead of saving in the temp folder.

I changed this setting to allows ask. Still the files are getting saved in the download folder after opening.

Please assist me to resolve this issue. Thanks.

Được hỏi bởi senanindya21 2 năm trước

Được trả lời bởi Dropa 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

How do I reset the Settings and about:config without affecting anything else?

Hello Team, I have been an avid user of Firefox for as long as I can remember. This however has one major drawback: the accumulation of all the settings and changes over… (xem thêm)

Hello Team,

I have been an avid user of Firefox for as long as I can remember. This however has one major drawback: the accumulation of all the settings and changes over the years! I explain this below.

I have noticed that my browser is not performing as intended, i.e. a lot of browsing especially in pages like Google Maps is very slow, some images and videos are covered by some distorted image, other objects are not loading at all, and the list goes on. Now, I know that most of you will say that this may be because of add-ons. I really wish it was.

I performed the following tests: 1. I created a new profile from about:profiles and loaded it. It was just a bare Firefox with nothing else on it. I was blown away by how everything worked so fast and smoothly. Literally, even Google maps was smoother than it was on Chrome. 2. I started adding my add-ons, etc. Nothing changed, even when they were all added. Everything worked perfectly. 3. I went back to my "broken" Firefox and started changing everything in Settings to match the new profile: especially under Privacy & Security. Still the same issues. 4. Once, on the new Profile, I logged in to sync with my Firefox account so I can pull in my bookmarks, etc. the new profile became "broken" too.

This leaves me with one conclusion. The broken part is deeper in the Firefox settings. Keep in mind that as a long time user of Firefox this is the accumulation of a lot of settings over all these years (including a few changed settings in the about:config page.)

My question now is, how do I reset my about:config changes and anything else related without having to lose my sync? (because if I do and then I re-sync then all those changes come back again.)

Ultimately that is what I think is the solution is: to reset the Settings and about:config settings (and any other related ones) without affecting anything else so that they will be pulled up to the sync server (hence why I need to remain logged into my account) and pushed onto my other Firefox browsers.

Correct me if I am wrong here or if you have any other solutions.

Được hỏi bởi G-Cyborg 2 năm trước

Được trả lời bởi cor-el 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

ICS files

In the past, when ICS files were in a mail, I had been asked what to do, and could open them in OUTLOOK. This option has been apparently cancelled and it only asks where … (xem thêm)

In the past, when ICS files were in a mail, I had been asked what to do, and could open them in OUTLOOK. This option has been apparently cancelled and it only asks where to save the file, without any option to open it directly. Furthermore, when I try to modify it in the "settings" and change it to "Always ask" I can't find no ICS files nor OUTLOOK SCHEDULE files. Please advice. Thanks

Được hỏi bởi giorarytwo 2 năm trước

Được trả lời bởi Terry 2 năm trước