Showing questions tagged: Show all questions
  • Archived

GOOGLE WILL NOT LET ME SIGN IN ON FIREFOX "Couldn’t sign you in This browser or app may not be secure"

GOOGLE WILL NOT LET ME SIGN IN ON FIREFOX. I can sign in will all other browsers but I get this message on Firefox: Couldn’t sign you in This browser or app may not be s… (read more)

GOOGLE WILL NOT LET ME SIGN IN ON FIREFOX. I can sign in will all other browsers but I get this message on Firefox:

Couldn’t sign you in This browser or app may not be secure.

I have cleared cache, cookies. Checked for updates...rebooted, ect. Nothing works.

HELP!!!!

Asked by a60 1 year ago

Last reply by cor-el 1 year ago

URL high lighting

Is there a way to make the URL high lighting of the domain more obvious? I find that most people can barely see the highlighting and I'd like to make it obvious (bolder … (read more)

Is there a way to make the URL high lighting of the domain more obvious? I find that most people can barely see the highlighting and I'd like to make it obvious (bolder and red, or highlighted in yellow, for instance.)

Can this be done via userchrome.css?

Thanks,

Thane

Asked by tsherr 3 months ago

Last reply by jeff-g 3 months ago

Finish Setup

In the top right corner of tab bar, a message of Finish Setup. In the pop up window all area's are check off green. I don't know what it wants and to locate page to Finis… (read more)

In the top right corner of tab bar, a message of Finish Setup. In the pop up window all area's are check off green. I don't know what it wants and to locate page to Finish Setup

Asked by Ron S 2 months ago

Last reply by jscher2000 - Support Volunteer 1 month ago

  • Solved

Manage Bookmarks font too large

The font size in "Manage Bookmarks" is way too large, both in the sections list menu on the left and the list of bookmarks. I checked my userChrome.css file as well as th… (read more)

The font size in "Manage Bookmarks" is way too large, both in the sections list menu on the left and the list of bookmarks. I checked my userChrome.css file as well as the layout.css.devPixelsPerPx entry in about:config and there's nothing there to explain why only the "Manage Bookmarks" text is so large.

It's possible I changed a setting somewhere that's causing this. But I'm stumped re: what setting might be controlling the font size in only that UI. All other Firefox text sizes are good.

Thanks to anyone who knows where I should be looking

Firefox 134.0.1 (64-bit) Windows 10

Asked by rproulx1 5 months ago

Answered by jscher2000 - Support Volunteer 5 months ago

  • Archived

How do I pin the sidebar button to the ui so it doesn't disapear when resizing the window?

How do I permanently change the "overflows" attribute of the new sidebar button to false so it doesn't disappear on me when I resize the window and I still need my tabs? … (read more)

How do I permanently change the "overflows" attribute of the new sidebar button to false so it doesn't disappear on me when I resize the window and I still need my tabs?

Asked by Anouk 7 months ago

Last reply by cor-el 6 months ago

  • Archived

Can't set local new tab page

In the year 2024, firefox still does not allow a simple way to set any URL you would like as the new tab url (without an extension). Users were previously able to use ex… (read more)

In the year 2024, firefox still does not allow a simple way to set any URL you would like as the new tab url (without an extension).

Users were previously able to use extensions like NewTab override to have a relatively seamless experience changing their new tab page. However after certain changes, these said extensions can no longer set your new tab page to a local file, and can also no longer clear and focus the address bar.

I am simply requesting a feature within firefox to set a custom new tab page, without having to create any external configs, or without using any extensions. This basic feature has been available in chromium browsers for years, and firefox already includes a feature just like this for the "Homepage and new windows" setting, where it allows you to input a custom URL to a local file or site to put it as your homepage. However, this same setting for some odd reason does not exist for the "new tabs" option. Why is this?

As of now, I've had to use a manual override along the lines of this:

``` // shenanigans for setting a different new tab page const { classes: Cc, interfaces: Ci, utils: Cu } = Components; const { AboutNewTab } = Cu.import("resource:///modules/AboutNewTab.jsm", {}); // path to new tab can be a url or file const newTabURL = "file:///home/faaris/.local/packages/startpage/fazzi/index.html"; // set the new tab URL AboutNewTab.newTabURL = newTabURL; ```

this should not be needed. Having to modify files in system protected folders should not be needed for such a simple option.

Asked by Faaris 7 months ago

Last reply by eddiejoe67 6 months ago

FireFox Homescreen Custom wallpapers

Please add a Custom wallpaper options, Your browser has been the best so far i have used many browsers but i would love to have a custom wallpaper option and live wallpap… (read more)

Please add a Custom wallpaper options, Your browser has been the best so far i have used many browsers but i would love to have a custom wallpaper option and live wallpaper option too if possible just like operaGX has. Anyone can upload a wallpaper there.

Asked by Lakshya Agrawal 2 months ago

Last reply by Paul 2 months ago

How to add third-party AI to chatbot sidebar?

I was planning to start using the AI chatbot sidebar finally, tried out all of the free options available and settled on HuggingChat. The very next day, HuggingChat cease… (read more)

I was planning to start using the AI chatbot sidebar finally, tried out all of the free options available and settled on HuggingChat. The very next day, HuggingChat ceased operations. I don't really like the other preset options, but I have a couple of other models that I would be interested in trying out. Is there some way to add a different model than the five preset or am I just out of luck?

Asked by o.neulinger 1 week ago

Last reply by TyDraniu 1 day ago

  • Solved

Customize New Tab with a local HTML file after Firefox 136

Hello, I wanted to customize my Firefox new tab with a local HTML file, such as "/path/to/my/index.html". It was possible to use this workaround: https://github.com/Jang… (read more)

Hello,

I wanted to customize my Firefox new tab with a local HTML file, such as "/path/to/my/index.html". It was possible to use this workaround: https://github.com/Jangsoodlor/Firefox-New-Tab-Config/tree/main https://github.com/Jangsoodlor/Firefox-New-Tab-Config/tree/main

Which implied a configuration file (sometimes named "autoconfig.cfg", "firefox.cfg", "local-settings.cfg" depending on the guide since the name is arbitrary) with javascript code. In the new Firefox 136, this code fails to execute due to a new API being used.

If you want to customize your new tab, follow the previous guide, but on the configuration file write this code instead:

// My new tab
try {
  const ff = {};
  ChromeUtils.defineESModuleGetters(ff, {AboutNewTab: "resource:///modules/AboutNewTab.sys.mjs"});
  ff.AboutNewTab.newTabURL = 'file:///path/to/my/index.html';
} catch (e) {ChromeUtils.reportError(e);}

Note that the file must start with a comment

Adapting the "/path/to/my/index.html" to your needs.

Thanks to @mkaply (github) on this thread https://github.com/mozilla/policy-templates/discussions/1190 for the new API method.

I post this here in case someone has the same issue, because is quite recent and hard to find on the internet.

Asked by LluisE 3 months ago

Answered by jscher2000 - Support Volunteer 3 months ago

  • Archived

How do I verify that the browser I am using is accessing the web via my VPN?

I just purchased a year subscription for the Mozilla VPN. I want to be able to verify that the FireFox browser I'm using is accessing the web via the VPN. How do I veri… (read more)

I just purchased a year subscription for the Mozilla VPN. I want to be able to verify that the FireFox browser I'm using is accessing the web via the VPN. How do I verify that? I don't see any icon indicated that it's a VPN connection.

Asked by wills4 6 months ago

Last reply by Tin Zaw Cho 4 months ago

How to set new backgroung image to home page

Hi All I am trying to set up a background image to my FFX home page. In other browsers that is simple; I see no simple way in FFX. Is this a failing? Can it be overcome… (read more)

Hi All

I am trying to set up a background image to my FFX home page. In other browsers that is simple; I see no simple way in FFX. Is this a failing? Can it be overcome, simply?

Asked by Lojong 4 months ago

Last reply by James (On Leave) 4 months ago

  • Solved
  • Archived

How can I change the colour of the text in the active tab?

Thanks to the help received here and in the Reddit group I've been able to transfer almost all of my old colour and layout tweaks to a new intallation of Firefox (v133) o… (read more)

Thanks to the help received here and in the Reddit group I've been able to transfer almost all of my old colour and layout tweaks to a new intallation of Firefox (v133) on a new PC (running Windows 10). There's one thing that I haven't succeeded with though: I'd like to change the colour of the text in a tab when that tab becomes the active one.

This is the coding I'm using to change the tab's background colour when it's selected:

  1. TabsToolbar .tab-background[selected]{

background: white !important; }

This works perfectly. But when I tried adding the line

color: black !important;

It had no effect. I'd be grateful for any thoughts. Many thanks.

Asked by mail226 6 months ago

Answered by mail226 6 months ago

  • Archived

why my wordpress site not opening on mozilla firefox browser but opening on chrome browser

sir , I have a wordpress website (https://aghortantra.com) Today morning my wp site not opening on mozila firefox but on chrome browser , it opening well. So, I request… (read more)

sir , I have a wordpress website (https://aghortantra.com) Today morning my wp site not opening on mozila firefox but on chrome browser , it opening well. So, I request you please fix the problem.

Asked by Acharya Pradeep Kumar 1 year ago

Last reply by jonzn4SUSE 1 year ago

Taaskbars haved moved

1. I accidentally moved the address bar in Firefox and I cannot get it back where it belongs. This is causing me and inordinate amount of stress. It should be simple. I w… (read more)

1. I accidentally moved the address bar in Firefox and I cannot get it back where it belongs. This is causing me and inordinate amount of stress. It should be simple. I want the address bar back at the top. Not in the middle, and half way to the right of the screen. 2. Webpages are now displaying with "blank" space on both side of the window. 3. The bookmark bar comes and goes. In the screenshot... it has disappeared again.

Reinstalling Firefox did not help at all. Please help... this is stressing me out far more than it should.....

Asked by Lord Goblinking 2 months ago

Last reply by jscher2000 - Support Volunteer 2 months ago

Extensions toolbar item

Under Customize Toolbar, I want to move the toolbar item "Extensions" off the top menu bar, and into the Overflow Menu, or another area, to make the address bar bigger. … (read more)

Under Customize Toolbar, I want to move the toolbar item "Extensions" off the top menu bar, and into the Overflow Menu, or another area, to make the address bar bigger. When I attempt to move it, there is a ban symbol across it and it will not move. Firefox 127.0.

Asked by mikeschwarz85018 3 months ago

Last reply by jscher2000 - Support Volunteer 3 months ago