Showing questions tagged: Show all questions
  • Solved
  • Archived

How to hide the full URL from address bar?

I have the browser.urlbar.trimURLs switched to TRUE but still as you can see in the screenshot it shows the complete URL with the protocols. I do not want this, I want it… (read more)

I have the browser.urlbar.trimURLs switched to TRUE but still as you can see in the screenshot it shows the complete URL with the protocols. I do not want this, I want it to hide it and only show the main link like youtube.com instead of https://youtube.com

Asked by Amay 1 year ago

Answered by Amay 1 year ago

  • Solved
  • Archived

Firefox CSS question: putting navbar at top of browser, in line with Menu bar

Hello. Before the "proton" update to the Firefox UI, I had nicely saved space in my browser by putting the navbar up on the same level with the menu bar which is able to … (read more)

Hello. Before the "proton" update to the Firefox UI, I had nicely saved space in my browser by putting the navbar up on the same level with the menu bar which is able to make the UI area of Firefox take up less vertical space on my screen. Proton broke this however, so I reverted.

What sort of userchrome.css code do I now need to use in order to put the menu bar and navbar on the same level, like the attached image?

Asked by zach.heise 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

How do I disable the mute button on tabs? Setting "browser.tabs.showAudioPlayingIcon" to false does nothing

The mute icon only shows on hover and takes up 50% of the tab size so I'm constantly accidentally muting tabs without realizing it and silencing video calls and the like.… (read more)

The mute icon only shows on hover and takes up 50% of the tab size so I'm constantly accidentally muting tabs without realizing it and silencing video calls and the like. The top Google result for this issue -- rightfully yelled in all caps because this is an absolutely horrid UX -- says to set browser.tabs.showAudioPlayingIcon to false, but that does absolutely nothing in FF 100.0

Asked by exasperated_plum 1 year ago

Answered by user104147805413306348376805769878442569366 1 year ago

  • Solved
  • Archived

How to force light mode on regardless of theme

I have a custom theme on Firefox called Charlies Red. Up until two days ago, Firefox would always consider it to be in light mode (which I prefer) whenever I'd use it. No… (read more)

I have a custom theme on Firefox called Charlies Red. Up until two days ago, Firefox would always consider it to be in light mode (which I prefer) whenever I'd use it. Now, however, it's in dark mode, and the only way I can return to light mode is to give up my custom theme and instead choose Light as a theme, which I don't like as much as Charlies Red.

Is there a way to force light mode on regardless of which theme I use? One source said I could go to about:config and create a ui.systemUsesDarkTheme number, setting it to 0, but I tried it to no avail and so deleted the number.

Asked by nick151 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

HOW DO I REMOVE MSN PAGE FROM LOADING BEFORE FIREFOX ON WINDOWS 10

Got a new Acer laptop with windows 10. Firefox is set as my default browser but msn page opens first then i have to click on next tab to open Firefox. How can i get rid o… (read more)

Got a new Acer laptop with windows 10. Firefox is set as my default browser but msn page opens first then i have to click on next tab to open Firefox. How can i get rid of msn?

Asked by kwikconstkp 1 year ago

Answered by FredMcD 1 year ago

  • Solved
  • Archived

Certain websites appear in some sort of "dark mode" when dark themes are enabled

I've been using Elijah Lopez's Matte Black (Red) theme for months. Recently, I think because I added the ClearURLs extension or some other change, certain websites enter … (read more)

I've been using Elijah Lopez's Matte Black (Red) theme for months. Recently, I think because I added the ClearURLs extension or some other change, certain websites enter some sort of "dark mode" when accessed.

Websites that do this include Twitter, an independent blog, and Youtube.

The website appears normally with the default light theme enabled. In the second photo, the website appears in the "dark mode" with the black Firefox theme enabled.

I have deleted cookies and cache, reinstalled Firefox, and reinstalled Extensions. I think this problem only occurs with dark themes, and nothing else. The moment I change to dark theme, the problem comes back. It is strange because the dark theme was working just fine for months until recently.

How can I keep the dark theme, preferably the same Elijah Lopez's dark theme, while using websites normally and not in this weird "dark theme" style adaptation?

Asked by rishiagrawal2002 2 years ago

Answered by TyDraniu 2 years ago

  • Solved
  • Archived

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 2 years ago

Answered by DB-1 2 years ago

  • Solved
  • Archived

Overflow Menu Is Broken

I'm using Firefox 112 on Windows 10. The toolbar contains icons for several extensions that I don't want to see. I click on the >> menu and then Customize Toolbar. … (read more)

I'm using Firefox 112 on Windows 10. The toolbar contains icons for several extensions that I don't want to see. I click on the >> menu and then Customize Toolbar. That opens the Overflow Menu. It says, "Drag and drop items here to keep them within reach but out of your toolbar." I try to drag one of those extension icons onto the Overflow Menu. It won't go. The dragged icon picks up a circle with a line through it, indicating that this is not allowed or not working.

How can I use the Overflow Menu as advertised, to remove unwanted extension icons from the toolbar? Or is there a good workaround?

Asked by raywood 7 months ago

Answered by TyDraniu 7 months ago

  • Solved
  • Archived

Pop-up blocker problem

Hello, I am trying to print an email in gmail and this message popped up. " Grrr a pop-up blocker may be preventing the application from opening the page." Is this a gma… (read more)

Hello, I am trying to print an email in gmail and this message popped up. " Grrr a pop-up blocker may be preventing the application from opening the page." Is this a gmail or Firefox problem? Probably a dumb question from a not-so-tech-savy user. Thanks for any help. LF

Asked by laurelfarnham 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

How do I remove this annoying update prompt pop-up?

I turned off Firefox updates because I'm sick and tired of having to download a new version at least once a week. So now I face a different problem. Every time I turn on … (read more)

I turned off Firefox updates because I'm sick and tired of having to download a new version at least once a week. So now I face a different problem. Every time I turn on Firefox I'm greeted by this annoying, unwanted pop-up spam message:

https://i.imgur.com/qFtXPXr.jpg (also see: attached image)

I want to disable this. I do not want to update, and I do not want to be reminded to update. Please don't waste both your and my time by replying "but you have to update". No I don't. I have nothing sensitive on this PC so even if I got infected by a virus or whatever because it's not the newest version, nothing bad will happen to me. At least nothing I consider as bad as having to update every single week. If there is no solution possible, I will simply stop using Firefox and use a different web browser instead. Thanks.

Asked by blabler 1 year ago

Answered by TyDraniu 1 year ago

  • Solved
  • Archived

How can I set a custom file as home page for new tabs in Firefox Desktop 107?

Hello, in past versions of Firefox, I was able to follow the steps on this page to set a custom HTML file on my PC as my home page for new tabs: https://peterries.net/blo… (read more)

Hello, in past versions of Firefox, I was able to follow the steps on this page to set a custom HTML file on my PC as my home page for new tabs: https://peterries.net/blog/firefox-ubuntu-local-file/

I have Firefox 107.0.1 now and it's not happening. When I open the browser from scratch, I see my custom home page file. But when I open a new tab, I just see a blank screen. If I then click the Home icon on the toolbar, I do see my custom HTML page, but I don't want to have to click that button for each new tab.

Right now, in my settings, I have the URL to the page set as the custom URL for the HTML fiile, like this:

file:///home/peter/Documents/homepage/peter-home-homepage.html

That works. And I also have followed the steps on that blog post to customize my /usr/lib/firefox/autoconfig.cfg and my ../firefox/defalults/pref/autoconfig.js files. That's no longer working.

Did something in a recent version change? Is this no longer supported? Thanks for any ideas!

Asked by peterr2 11 months ago

Answered by cor-el 11 months ago

  • Solved
  • Archived

Compact mode: bookmark spacing/padding in Firefox 112.0 on Windows 10 - (since version 89?)

Firefox 112.0 running on Windows 10 64-bit laptop with a small (pixel geometry) display screen has unnecessarily large padding (white space) around each bookmark as I nav… (read more)

Firefox 112.0 running on Windows 10 64-bit laptop with a small (pixel geometry) display screen has unnecessarily large padding (white space) around each bookmark as I navigate bookmarks on the bookmark bar.

I believe this was a change instituted around version 89 (in a nutshell, I could see more - twice as many? - bookmarks listed within a bookmark folder with version 88/before. The vertical whitespace between bookmarks within a folder is excessive and makes it much more necessary to scroll within a (long) list of bookmarks in a folder when looking for one.

There was a procedure posted in the discussion below on how to set and enable "compact density".

Bookmark Padding in New Firefox Versions 2 https://support.mozilla.org/en-US/questions/1369996

The procedure below was attempted - browser.compactmode.show enabled, browser restarted, however, I cannot fin "Customize Toolbar" and "compact".

"go to - about:config search - "browser.compactmode.show" - change to TRUE , then close that window go to - Customize Toolbar at the bottom of that page, there a box called Density. Click that, you'll see "compact (not supported)" Apparently, it IS supported because I chose that. (it looked like it ignored my choice) After I closed Customize Toolbar, the bookmarks were compact spaced again. Exactly how I need them."

Is this fixable/solvable?

Asked by wb0gaz 7 months ago

Answered by cor-el 7 months ago

  • Solved
  • Archived

How can I put the new tab button in the same position that chrome would have?

My muscle memory has me constantly clicking just slightly to the right of where the furthest right tab is. It feels weird stretching alllll the way right or alll the way … (read more)

My muscle memory has me constantly clicking just slightly to the right of where the furthest right tab is. It feels weird stretching alllll the way right or alll the way left. I've tried both spots and it just feels unatural to me. Obvioulsy I'll get used to it after a while its just I'd like it to be back to where I'm used to it being.

Asked by xledgendsx 1 year ago

Answered by TyDraniu 1 year ago

  • Solved
  • Archived

Print color mode disabled

When printing a page or pdf the color mode is disabled in the print dialog. Is this a known bug waiting to be fixed? Please avoid suggestions like "use printer dialog" o… (read more)

When printing a page or pdf the color mode is disabled in the print dialog. Is this a known bug waiting to be fixed?

Please avoid suggestions like "use printer dialog" or "set default printing to desired setting from windows"

It is unacceptable to not be able to change color or b/w when needed or e.g. duplex mode

Thank you

PS: did change in print.printer_PRINTER-NAME.print_in_color to false with no luck anyways but even if it did work it's not easy to change every time I need different mode

Asked by debugitsolutions 1 year ago

Answered by debugitsolutions 1 year ago

  • Solved
  • Archived

How to keep configured shortcuts instead of new ones being added by history

Hello, So I have shortcuts configured in 3 rows that open on each new tab. These shortcuts contain my most used websites. However not all the shortcut squares are actual… (read more)

Hello,

So I have shortcuts configured in 3 rows that open on each new tab. These shortcuts contain my most used websites. However not all the shortcut squares are actually filles on each row. And that is how I want to keep it.

But during any browsing session I see that the rest of the shortcut squares are being filled from the current history of the browsing session from other websites.

Recently I had to reinstall Firefox and as far as I know I configured everything the same. But in my old install I managed to keep a fixed set of websites in those shortcut rows and NOTHING from the browsing history was added.

So, how do I configure the shortcuts that only the websites I add there manually stay there and NO other websites will be added from the browsing history?

Asked by schijtmail 1 year ago

Answered by jonzn4SUSE 1 year ago

  • Solved
  • Archived

Zoom change in firefox 103, how to undo it?

Firefox 103 screws with website zooming if you use the "Make text bigger" accessibility setting in Windows. 150% for example now zooms in a lot more with the accessibilit… (read more)

Firefox 103 screws with website zooming if you use the "Make text bigger" accessibility setting in Windows. 150% for example now zooms in a lot more with the accessibility setting in Windows set to 120%.

How do I undo this change so that 150% is 150% and not bigger than 150%? I had all my frequented websites set up how I liked it and now this comes along and messes it all up >:V at the moment it seems like 120% Firefox + 120% Accessibility is similar to what 150% in Firefox was like but it's not exactly the same. I've now gotta go futz with zoom levels for each web page I frequent again to find what looks most comfortable for each one.

Also this change greatly modifies consistency when it comes to the granularity of zooming. For example, what is 100% zoom when Accessibility is set to 120% so that I can avoid filtered scaling being applied to pictures? Why is the in-browser percentage indication not accurate with the level of zooming actually being applied?

The zoom level I choose is no longer the zoom level applied, there is now a multiplier in effect. So 50% isn't 50% anymore, 60% isn't 60% anymore, 70% isn't 70% anymore, 80% isn't 80% anymore, 90% isn't 90% anymore, 100% isn't 100% anymore, 110% isn't 110% anymore, 120% isn't 120% anymore, 130% isn't 130% anymore, 140% isn't 140% anymore etc.

A website that looked good at 133% can no longer be viewed at 133% if the Accessibility setting isn't also 133%.

Not a fan of whoever decided to implement this seemingly without a way to turn it off.

Asked by Franpa 1 year ago

Answered by TyDraniu 1 year ago

  • Solved
  • Archived

Enable light theme for Private browsing windows?

With the upgrade to Firefox 106 on Mac, Private browsing windows open with a dark theme by default. How do I enable the light theme for Private browsing windows? I use P… (read more)

With the upgrade to Firefox 106 on Mac, Private browsing windows open with a dark theme by default. How do I enable the light theme for Private browsing windows?

I use Private browsing at work for website testing, and the dark themed tabs / UI are much harder to read and use than with a light theme.

Asked by J Taylor 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Default font is replacing all fonts everywhere

The Firefox desktop browser default font is replacing all fonts on some websites, only title fonts on some others, and then leaving others unchanged. It seems random, and… (read more)

The Firefox desktop browser default font is replacing all fonts on some websites, only title fonts on some others, and then leaving others unchanged. It seems random, and I can't stop the default font from taking over randomly on most websites no matter what I do. This was not happening until today, and no browsers or general MacBook Air preferences were changed between today and yesterday when I last used the browser on desktop.

Under Firefox Preferences » Fonts » Advanced, I've made sure to check the box to "Allow pages to choose their own fonts instead of your selections above", and I've unchecked it, and I've re-checked it, and the default is still overriding fonts on most websites.

I've quit and restarted Firefox 3 times.

Help!

Asked by Elan 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago