- Solved
How can I change my home page as duckduckgo.com
Please help how can I change my home page as duckduckgo
Please help how can I change my home page as duckduckgo
I really miss the home symbol (a little house), as it allowed me to go back to the original page- blank. I could just start over without having to clear the address bar. … (read more)
I really miss the home symbol (a little house), as it allowed me to go back to the original page- blank. I could just start over without having to clear the address bar. It was way better than without it. Any way I can get it back?
i woud like to have mz firefox and google page back
I don't want "Stories" to open up on my phone every (or even any) time I want to use Firefox.
How do I get rid of some of the sections on the home page? For example, there are some, like all the sports ones, that I NEVER want to see.
How do you remove a short cut on Focus?
For some reason, the Facebook logo started appearing on the opening screen. How do I get rid of it?
do not want a website as my home page - prefer Firefox default as I had before restart, however when I go to Settings, Home page is set to Firefox default but it does not… (read more)
do not want a website as my home page - prefer Firefox default as I had before restart, however when I go to Settings, Home page is set to Firefox default but it does not work -- how else can I have my home page back to default. If you send my link I can probably drag it there hopefully. Thank you
Hi Firefox Team, I know how hard you guys work and I've used you almost exclusively since the beginning in 2003 and talked a lot of folks into switching to you over the … (read more)
Hi Firefox Team,
I know how hard you guys work and I've used you almost exclusively since the beginning in 2003 and talked a lot of folks into switching to you over the years.
I'm so frustrated about your decisions to change the options for what we users want on our home page and new tabs. Seems I can only use a blank page or your default home page. And if I want my normal home page I need to click on the home icon. In the course of a day, that's a LOT of extra clicking or the alternative, typing my search query into a tiny URL bar.
Are you planning to change this? Or is this Mozilla control by default the new norm? I'm so sad to admit to be exploring Mullvad and Brave now. Never would have even considered it, even though I'm consciously weaning off other US digital products.
Thanks for any suggestions and for all you do. (Yes my IOS is up to date)
Pen
How do I get the little house icon on my screen
All of a sudden I keep getting pop up ads on my Home page, even though I click on that I'm not interested or they're inappropriate, etc. How do I stop these??
Hi This issue started today. When I’m in Firefox on my iphone14 and go to the search line my shortcuts and bookmarks, etc are now in the background. How can I bring ever… (read more)
Hi This issue started today. When I’m in Firefox on my iphone14 and go to the search line my shortcuts and bookmarks, etc are now in the background. How can I bring everything back so that it’s all accessible when I use the search line? The only way I can access everything in the background, is by opening a new window.
After the most recent Firefox update for iOS, none of my shortcuts work. They’re all still there - or it looks like they are - but whenever I tap on one of them, I return… (read more)
After the most recent Firefox update for iOS, none of my shortcuts work. They’re all still there - or it looks like they are - but whenever I tap on one of them, I return to the page I was just on - no loading, no changes, no nothing. I am still on iOS 18.6.2, but this wasn’t an issue before the Firefox update.
How do I set my home page with my yahoo mail account? I looked under your help section and followed instructions and it didn't work. I am currently setting up my new co… (read more)
How do I set my home page with my yahoo mail account? I looked under your help section and followed instructions and it didn't work. I am currently setting up my new computer.
I signed onto my parents computer that was assigned to a school district and now everytime I open firefox on any of my devices their website keeps popping up. I've signed… (read more)
I signed onto my parents computer that was assigned to a school district and now everytime I open firefox on any of my devices their website keeps popping up. I've signed out of their computer and have tried deleting and reopening my account, and nothing seems to work.
I use the Zen browser and I can't use ctrl+shift+c to view the element, I deleted the shortcut specified in the settings for copying the page URL so that the inspector wo… (read more)
I use the Zen browser and I can't use ctrl+shift+c to view the element, I deleted the shortcut specified in the settings for copying the page URL so that the inspector would work, but it doesn't work, although the correct shortcut is indicated when hovering, but it doesn't work
Firefox only shows favicons in the shortcuts for the pre-installed sites. All new sites do not get favicons, just the stylized first letter of the domain.
Since the settings haven't given that option for years, the best way to have a local file as the new tab page was using autoconfig.cfg + autoconfig.js, as described in th… (read more)
Since the settings haven't given that option for years, the best way to have a local file as the new tab page was using autoconfig.cfg + autoconfig.js, as described in this thread: https://support.mozilla.org/en-US/questions/1251199 But since the most recent update (v136.0), this stopped working.
The New Tab Override add-on has its own issues with using local files (can only load a .html file, no local CSS/JS, can't give a blank address bar for me to search in), so it doesn't solve the issue either.
This is very important to me, and others have been asking for this feature back for years. It feels awful to have the working solution stop working, in the browser that's supposed to be open and customizable.
Hi i need help with the latest update. It made the home screen icons too small. How can i change them back to like before?
Thanks
Hey! Up until the last update, I used this code to set and focus a custom new tab page instead of its address bar (This should be a default feature, but what can you do..… (read more)
Hey! Up until the last update, I used this code to set and focus a custom new tab page instead of its address bar (This should be a default feature, but what can you do...)
``` var {classes:Cc,interfaces:Ci,utils:Cu} = Components;
// Set new tab page try {
ChromeUtils.importESModule("resource:///modules/AboutNewTab.sys.mjs").AboutNewTab.newTabURL = "file:///home/razv/StartPage/index.html";
} catch(e){Cu.reportError(e);} // report errors in the Browser Console
// Auto focus new tab content try {
ChromeUtils.import("resource:///modules/BrowserWindowTracker.jsm").BrowserWindowTracker;
const Services = globalThis.Services
Services.obs.addObserver((event) => {
window = BrowserWindowTracker.getTopWindow();
window.gBrowser.selectedBrowser.focus();
}, "browser-open-newtab-start");
} catch(e) { Cu.reportError(e); } ```
After the last update, focusing the new tab page's content is broken. Can anyone help me?