Kukhonjiswa imibuzo ethegiwe:

Incognito Mode disappeared after upate, anyone else notice this too?

Just did a Mozilla update and noticed the Incognito Mode isn't working the same. I can click a link to New Private Window, but it looks exactly the same as a regular win… (funda kabanzi)

Just did a Mozilla update and noticed the Incognito Mode isn't working the same. I can click a link to New Private Window, but it looks exactly the same as a regular window. Incognito Mode was always purple which help me know I was in that mode. Anyone else notice this? Any suggestions? Thank you in advance.

Open 1 1 36

add ons no longer have toolbar buttons

I just got a new PC. On my old Windows 10 PC, many add-ons add useful buttons, for example OneTab which adds a button that closes all tabs and compiles a list of what was… (funda kabanzi)

I just got a new PC. On my old Windows 10 PC, many add-ons add useful buttons, for example OneTab which adds a button that closes all tabs and compiles a list of what was there, or Zotero, which lets me send stuff online to my Zotero citation database.

Now on my new Windows 11 PC, even though those add ons are installed and technically functional, I can't find the buttons anywhere. I wanted all that stuff on my toolbar for a reason. All I can find are convoluted keyboard shortcuts. I don't want to use a bunch of stupid keyboard shortcuts when I'm supposed to be able to just push a button for the same functionality.

Where did all my buttons go and how do I put them back? No, they are not in the "customize toolbar" option, and I have checked the options menus for my most important add ons too.

Okugcinwe kunqolobane 1 311

home house button on top tool bar

how do I get the house tab onto my tool bar? my lap top has it so when I close a window it goes to main Mozilla window. on my desk top there is now house to press when I… (funda kabanzi)

how do I get the house tab onto my tool bar? my lap top has it so when I close a window it goes to main Mozilla window. on my desk top there is now house to press when I leave a window it closes the home window.

Okugcinwe kunqolobane 1 27

Cannot Remove Separator from Tab Context Menu

Hi All, I would like to hide the "New Tab to Right" option on the Tab Context Menu, and also remove the separator line right below that menu item. The first line in the f… (funda kabanzi)

Hi All,

I would like to hide the "New Tab to Right" option on the Tab Context Menu, and also remove the separator line right below that menu item.

The first line in the following code removes the Menu Item, but none of the 4 remaining lines succeed in removing the separator line. It remains at the top of the menu (see attached image).

Could anyone suggest some code to also remove the separator line at the top?

This is in FF 135.

Thank you.

#context_openANewTab,
#context_openANewTab + menuseparator,
#context_openANewTab_separator,
#context_reloadTab_separator,
#context_reloadTab + menuseparator::before {
   display: none !important;
}


This code below removes the first menu item and ALL separators from ALL menus, which is "ok" but not optimal.

menuseparator,
#context_openANewTab {
   display: none !important;
}


This solution provided by cor-el a few years ago appears to no longer work (the separator remains): https://support.mozilla.org/nl/questions/1340761

Kusonjululiwe Okugcinwe kunqolobane 2 481

Inline JavaScript to hide bookmarks sidebar upon opening new browser instance

Does anybody know which options to use on the command-line start of Firefox such that the only thing displayed is the area within which an HTML page would be presented? I… (funda kabanzi)

Does anybody know which options to use on the command-line start of Firefox such that the only thing displayed is the area within which an HTML page would be presented?

I want to have it start with everything else turned off or hidden, namely

   memu bar
   page tabs bar
   address bar along all add-on buttons
   bookmarks sidebar

The "-kiosk" option is not appropriate for my needs.

-kiosk doesn't hide the sidebar (Bookmarks or not) if that sidebar was visible during last session before exit ... so ... no, "-kiosk" is not a proper implementation of a "page-only" display mode.

"-private-window" gives no benefit, display-wise, over and above what the "-new-window" option provides.

Everything I've read (even on the Mozilla support site) seems to point to creating a special profile for just that mode, and then to modify the "userChrome.css" file with custom properties to ensure the desired "off" setting for the GUI elements. That seems a rather "small-minded" view, ignoring the potential for huge market of self-contained hard-coded applications that would need only use the Firefox rendering engine, and nothing else!

One comment on Reddit indicated that the functionality was there ("-app" option working with XULrunner), but discontinued!


As a test, I did close all my browsers, leaving the bookmark sidebar visible before closing. I then entered:

firefox -kiosk -safe-mode -private-window ${URL}

I still get the bookmark-sidebar visible, with everything else "hidden" or "disabled", because visible sidebar is my default mode for normal browsing.

Is there no command-line startup switch to force that sidebar to "hide", equivalent to clicking on the "X" on the top-right corner?

OR ...

Is there any programmatic way to tell that to hide using JavaScript in the HTML page that is loaded? Everything I seem to locate refer to in-page Elements only, not Browser Elements. :frowning:

But "kiosk"(fullscreen-mode) is not the mode I want, because I want users to be able to have the simplified browser-based HTML App co-exist on the desktop with other windows, like a normal App.



    • Basic HTML test page** *(myHtmlGame.html)* **:**

``` <meta charset="UTF-8"> <title>myHtmlGame.html</title> <link href="myHtmlGame_bookmarks.css" rel="stylesheet" type="text/css">

Box A
Box B
Box C
Box D
Box E
```



    • Basic Javascript file** (*myHtmlGame_bookmarks.js*) **:**

```

// REF: https://stackoverflow.com/questions/1690002/how-can-i-prevent-firefox-showing-my-extensions-sidebar-on-startup var current = this;

var quitObserver = {

  QueryInterface: function(aIID) {
     if (aIID.equals(Components.interfaces.nsIObserver) || aIID.equals(Components.interfaces.nsISupports)) {
        return this;
     }
     throw Components.results.NS_NOINTERFACE;
  },
  observe: function(aSubject,aTopic,aData ) {
     var mainWindow = current._windowMediator.getMostRecentWindow("navigator:browser");
     var sidebar  = mainWindow.document.getElementById("sidebar");
     if (sidebar.contentWindow.location.href == "chrome://daisy/content/sidebar.xul") {
        mainWindow.toggleSidebar('openDaisySidebar', false);
     }
  }

};

setTimeout(function() {

  var mainWindow = current._windowMediator.getMostRecentWindow("navigator:browser");
  var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
  observerService.addObserver(quitObserver,"quit-application-granted",false);

},2000); ```


I've tried using this alternative content for the JavaScript file, but that also failed (using '*hideSidebarBookmarks()*' call in the in-line script segment):

``` function hideSidebarBookmarks() { const sidebar = document.getElementById("CustomizableUI.AREA_BOOKMARKS") ; sidebar.hide() ; } ```

I even tried replacing the word "document" with "browser" in the above, still with no success. :-(



    • Startup command :**

``` firefox -new-window ./myHtmlGame.html & ```



    • Basic CSS file** *(myHtmlGame_bookmarks.css)* **:**

``` html { font-size: 14px ; font-family: "Liberation Sans", "Aileron", "Archivo", FreeSerif, serif ; line-height: 1.2em ; }

body { display: block ; background-color: #1F1F1F ; color: #FF0000 ;

margin-top: 0 ; margin-right: 0 ; margin-bottom: 0 ; margin-left: 0 ; }

/*

************************************************************************
*/

.game-grid { display: grid ; grid-template-columns: 300px 300px 60px ; grid-template-rows: 40px 300px 150px ; }

.game-item-1 { grid-column: 1 / span 3 ; grid-row: 1 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-2 { grid-column: 3 / span 1 ; grid-row: 2 / span 2 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-3 { grid-column: 1 / span 2 ; grid-row: 2 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-4 { grid-column: 1 / span 1 ; grid-row: 3 / span 1 ; /* box-sizing: border-box ; */ border: 1px solid #8FCF8F ; background-color: #1F1F1F ;

padding-left: 3 em ;

display: block ; color: #FFCF4F ;

word-wrap: break-word ; /* overflow-y: scroll ; overflow-y: auto ; */ overflow-anchor: none ; scrollbar-color: grey-black ; scrollbar-width: thin ; scroll-padding-bottom: 20px ;

/* In case you need to kick off effect immediately, this plus JS */ /* height: 100.001vh ; */ }


.game-item-5 { grid-column: 2 / span 1 ; grid-row: 3 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

div { padding-top: 1 em ; padding-right: 0 ; padding-bottom: 1 em ; padding-left: 0 ; }

```

The above will display per the attached image.

Okugcinwe kunqolobane 1 182

Customization of sidebar

Hi, is there a way to customize sidebar to move the controls to the top or bottom of the sidebar? With sidebar open there is a lot of wasted space with just 3 icons - set… (funda kabanzi)

Hi, is there a way to customize sidebar to move the controls to the top or bottom of the sidebar? With sidebar open there is a lot of wasted space with just 3 icons - settings, history and sideberry buttons. Not really an optimal situation.

Attached screenshot and another picture explaining where I would like to move the buttons. Either top or bottom of the sidebar is preferable than taking the side.

Kusonjululiwe Okugcinwe kunqolobane 2 386

Firefox's mute tab "function" - how do I get rid of it please?

Google told me to go to About.Config, find "browser.tabs.showAudioPlayingIcon" then change the value to false. But, at least in my version of FF, that doesn't work becaus… (funda kabanzi)

Google told me to go to About.Config, find "browser.tabs.showAudioPlayingIcon" then change the value to false. But, at least in my version of FF, that doesn't work because browser.tabs.showAudioPlayingIcon isn't listed. I'm running 142.0.01.

I know FF is trying to please all the wonderful teenagers who want to constantly screw around with software settings. But it would be really nice if such new "features" were not turned on automatically.

Okugcinwe kunqolobane 4 157

How to get the hidden left side toolbar back after I removed it by mistake on another computer?

There is a left side hidden toolbar that has history AI etc pictured below. I removed it on another computer by mistake and can't figure out how to get it back. It is on… (funda kabanzi)

There is a left side hidden toolbar that has history AI etc pictured below. I removed it on another computer by mistake and can't figure out how to get it back. It is on a Windows 11 machine. Thank you for any help.

Kusonjululiwe Okugcinwe kunqolobane 2 175

Windows 11 maximized window leaves a gap at the top

recently Firefox has started leaving a small gap at the top of the window with the desktop background (the light blue in the screenshot) is visible when the window is max… (funda kabanzi)

recently Firefox has started leaving a small gap at the top of the window with the desktop background (the light blue in the screenshot) is visible when the window is maximized.

This issue doesn't occur with any other program and occurs in troubleshoot mode.

Okugcinwe kunqolobane 4 247

How to revert to old Firefox Search Engine Field user interface?

Firefox Search Field changed to a drop-down with Icon + Search Engine Name instead of the previous 3-6 icons on a row with Search Engine Name only appearing when you hove… (funda kabanzi)

Firefox Search Field changed to a drop-down with Icon + Search Engine Name instead of the previous 3-6 icons on a row with Search Engine Name only appearing when you hover over the Search Engine icon? How do I change Firefox back to the old Search Engine field user interface?

Attached is the new UI which takes up too much screen space if you have a lot of Search Engines installed in the Search Engine Field. I'd like to revert to the old code. If the old code is no longer in Firefox, what version do I have to downgrade to in order to get that old user interface back?

Kusonjululiwe 5 230

Mouse cursor is huge since recent update (Linux)

I am using Firefox v140.0.1 Snap on Kubuntu 25.04, Kernel 6.14. Since the Firefox update in the past couple days, the mouse cursor has started appearing huge and slightly… (funda kabanzi)

I am using Firefox v140.0.1 Snap on Kubuntu 25.04, Kernel 6.14. Since the Firefox update in the past couple days, the mouse cursor has started appearing huge and slightly blurry (as though the image is scaled up) in Firefox and nowhere else. The size is visually annoying, and occasionally difficult to know exactly where I'm clicking (trying to move the caret in a text box for example). It also appears to be a different style from the main desktop cursor, the shape and color are ever so slightly different, but this may already have been the case and I simply didn't notice because of the previously small size. Firefox doesn't have its own built in cursor settings that I can find, nor obey the system cursor settings. I have a high DPI display so perhaps it is being over-compensated for? e.g. both the system and Firefox are scaling the cursor up, assuming the other hasn't done it already, resulting in a cursor that's too big.

Kusonjululiwe Okugcinwe kunqolobane 4 639