ট্যাগ লাগানো প্রশ্নগুলো দেখানো হচ্ছে। সমস্ত প্রশ্ন দেখান
  • মীমাংসিত

Refresh Button mysteriously disappeared?

This is a silly one, probably. My refresh button has mysteriously disappeared from my browser toolbar. I can just use cmd+shift+r to refresh, but muscle memory keeps … (আরও পড়ুন)

This is a silly one, probably.

My refresh button has mysteriously disappeared from my browser toolbar. I can just use cmd+shift+r to refresh, but muscle memory keeps looking for the button on screen too, and it would be nice to have it back!

I opened up the customize options, thinking maybe I just removed it by accident, but refresh doesn't appear to be an option?

I also opened it up in troubleshoot mode to see if that would change anything. It did not :(

I also don't have any extensions that mess with the toolbar, so I don't think that would be an issue (and troubleshoot mode should have disabled extensions anyway I think.)

I recently updated to 126.0.1 - no idea if that has anything to do with it, but this did happen right after the update.

There are a couple more people on here with the same question, and they all had easy solutions. I'm hoping I'm just not seeing a setting somewhere.

Thanks!

Asked by Rainingredpandas 3 ঘন্টাসমূহ আগে

Answered by Rainingredpandas 3 ঘন্টাসমূহ আগে

New Issue with Dark Mode: Always Active on Google ONLY Regardless of Theme

I started using Firefox on my Macbook after only having used it on my Razer for awhile. On my Razer (so far) I've had no (new) issues with Dark Mode, but on my Macbook, t… (আরও পড়ুন)

I started using Firefox on my Macbook after only having used it on my Razer for awhile. On my Razer (so far) I've had no (new) issues with Dark Mode, but on my Macbook, the Firefox browser is always in dark mode when I search Google. It does not impact other sites (not even this one, where I'm typing this, or any of the other pages where I've looked for a fix). I have had this issue consistently with Firefox across mobile, my Razer, my old Windows computer, my Macbook, and everywhere I want to use it. In the past, changing the theme, going into the config settings (which I hate doing and am trying to avoid this time around), or using the Firefox Color custom themes have worked. I even checked my Google settings, and Dark Mode is completely disabled for search. So I know it's a Firefox issue.

Is there a permanent, consistent solution to just completely disable dark mode? I am never going to want to use it, and I am tired of having to go through some version of this every time I try to use Firefox on Mac -- especially since this time none of my normal workarounds are actually working.

I'd eat nails before using Chrome, but I am extremely frustrated.

Asked by boromiirs 2 দিনসমূহ আগে

  • মীমাংসিত

Add tab sharing support for Google Meet

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google … (আরও পড়ুন)

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google Meet and having the TAB sharing feature available is highly appreciated. I know this was requested a lot, but this is a real dealbreaker for many people.

What are your thoughts on this? Maybe it's somewhere in the roadmap already? Thanks!

Asked by pounds.oiler_0j 3 দিনসমূহ আগে

Answered by jscher2000 - Support Volunteer 3 দিনসমূহ আগে

Extensions Greyed Out

Hi, I've recently downloaded firefox and trying to add extensions that were similar to the ones I used on chrome. My problem is that all the extensions (Hoverzoom, Short … (আরও পড়ুন)

Hi, I've recently downloaded firefox and trying to add extensions that were similar to the ones I used on chrome. My problem is that all the extensions (Hoverzoom, Short Keys) in the extensions tab in the toolbar and appear to not be working (both in private and normal browsing). However the extensions (Ublock, SponsorBlock) that have their own icon on the toolbar seem to be working fine.

I've attached a reference image,

Any help would be greatly appreciated.

Asked by adidbz 6 দিনসমূহ আগে

Last reply by MarkRH 5 দিনসমূহ আগে

How to Disable the Privacy / Incognity Window

Hello! My name is Anya. I am desperately trying to manage my social media addiction and to help support that I am wondering if its possible to disable the privacy window.… (আরও পড়ুন)

Hello! My name is Anya. I am desperately trying to manage my social media addiction and to help support that I am wondering if its possible to disable the privacy window. I know I can install a website blocker - which I have, but it does not apply to the private window so I have full access to social media on it, I just have to log in. I want to COMPLETELY block Facebook and Instagram off of my laptop. Is this possible? Thank you!

Asked by anya.cherepanova131018 1 সপ্তাহ আগে

Last reply by NoahSUMO 6 দিনসমূহ আগে

Toggling visibility of the URL bar and tabs via the bookmarks toolbar visibility setting [SOLVED]

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others. navigator-toolbox:has(#PersonalT… (আরও পড়ুন)

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others.

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) {
 visibility: collapse;

}


+++

I was looking for a way to hide the nav bar and ran across this older forum topic (https://support.mozilla.org/en-US/questions/1288181).

The solution shown here seems to be non-functional these days (early 2024), but it gets us in the right direction, so below is the code for us to look at.

  1. main-window[chromehidden*="toolbar"] #nav-bar {
 visibility: collapse;

}

This is CSS, meant to be copied into a text document, itself placed in a folder called "chrome" that you'll need to create in your browser's active profile folder. Per step 6 in the instructions (https://www.userchrome.org/how-create-userchrome-css.html) linked by @jscher2000 in the above-linked forum topic, you'll also need to set toolkit.legacyUserProfileCustomizations.stylesheets to "true" in about:config. If you don't know what about:config is, this is a good example to get started, but I'm not going to explain it here.

This CSS code selects the object with ID #main-window, with an HTML attribute "chromehidden" equal to "toolbar", and sets its CSS property "visibility" to "collapse". Apparently Mozila have changed the way they implement toolbar hiding, as this no longer works — this chromehidden attribute is nowhere to be found in the HTML that drives the Firefox interface, not sure if that's the place to look for it, but I think so. Anyway, we need to dig around in this interface HTML ourselves to see what changes when hiding the bookmarks toolbar, so we can adapt a new method to what's going on in the browser now.

To do so, we open a window within a window (chrome://browser/content/browser.xhtml) and run the inspector via Web Developer Tools. Comparing the HTML we see here with the bookmarks toolbar in each state (I used BBEdit to compare the texts), we see that the object with ID #PersonalToolbar experiences a change in its "collapsed" attribute when we hide/show the bookmarks toolbar. So in our CSS code, we shift our strategy to update the "collapse" CSS property for #navigator-toolbox whenever it contains a #PersonalToolbar object with its own "collapsed" attribute set to "true", which occurs whenever we hide the bookmarks toolbar. Somewhat surprisingly, this approach of updating the CSS property seems to auto-reset on its own when the "collapsed" attribute is set back to "false", which occurs when we show the bookmarks toolbar again. In other words, it simply toggles with the visibility setting of the bookmarks toolbar, and we don't have to write any further code.

If you're interested in hiding some other UI element when hiding the bookmarks toolbar, you can modify this code to do stuff like that (but to go beyond the below examples you'll need to suss out the object IDs, CSS properties, and HTML attributes — and maybe more, depending on what you're trying to do — on your own).

But for convenience, here's an example that hides just the tabs:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #titlebar {
 visibility: collapse;

}


Here's one that hides just the URL bar:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #nav-bar {
 visibility: collapse;

}


Since those are the only other two things in the #navigator-toolbox to be hidden, I suppose that means we now have all options on the table (at least the way I have the browser set up). Enjoy!

Asked by firefox.anon8f8 1 সপ্তাহ আগে

Last reply by firefox.anon8f8 1 সপ্তাহ আগে

Disable shortcut or reasign it - Moves the URL left or right

Hey, Is it possible to disable a specific shortcut or change its assigned other keys? I wanted to disable the "Moves the URL left or right". It turns out that this func… (আরও পড়ুন)

Hey,

Is it possible to disable a specific shortcut or change its assigned other keys?

I wanted to disable the "Moves the URL left or right". It turns out that this functionality won't be useful to me, but this shortcut is the one that I use the most :/

https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly

Thanks,

Asked by anotherthing 2 সপ্তাহসমূহ আগে

Picture in picture not working

Whenever I use the picture in picture feature, it always opens up in a bigger tab instead of the floating PiP. I am unable to adjust the sizing whatsoever. Is there a way… (আরও পড়ুন)

Whenever I use the picture in picture feature, it always opens up in a bigger tab instead of the floating PiP. I am unable to adjust the sizing whatsoever. Is there a way to get around that?

Asked by Raymond Boheme 2 সপ্তাহসমূহ আগে

Last reply by Raymond Boheme 2 সপ্তাহসমূহ আগে

Use ABOUT:CONFIG to keep Same Page Size/Location from last Closed page

If I Close (not Exit) FF and then later Open it, the new Open page is a different size and screen location than when it was last closed (I have to then reposition the pag… (আরও পড়ুন)

If I Close (not Exit) FF and then later Open it, the new Open page is a different size and screen location than when it was last closed (I have to then reposition the page manually).

Is there a ABOUT:CONFIG setting I can can change to stop this?

Asked by Michael Jonas 2 সপ্তাহসমূহ আগে

Double Click to Mimimize Broken on Mac OS Sonoma

I have always been able to use the Mac setting to Double Click Title Bar to Minimize windows and it's always worked fine with Firefox. Until Sonoma, but with a stipulatio… (আরও পড়ুন)

I have always been able to use the Mac setting to Double Click Title Bar to Minimize windows and it's always worked fine with Firefox. Until Sonoma, but with a stipulation.

It will not respond at all to a double click, but ONLY when I have chosen to show the title bar in Firefox. It works fine clicking in the tab plane as long as I have Show title bar turned off. This is a bit bizarre, but it appears a recent update of Firefox no longer works like that in Sonoma. Works fine on a Windows 10 machine and on a Mac running an older OS.

Note that I did do all the proper troubleshooting, reset Firefox, start in safe mode and all to no avail. When Show Title Bar is turned on, double click to minimize simply does not work.

Asked by info2825 2 সপ্তাহসমূহ আগে

Theme

I have enabled my new Theme but it keeps defaulting back to my old Theme. I have tried closing Firefox and opening new tabs. Opening a new tab also changes it back to the… (আরও পড়ুন)

I have enabled my new Theme but it keeps defaulting back to my old Theme. I have tried closing Firefox and opening new tabs. Opening a new tab also changes it back to the default theme. I have sent an image of the old theme. The new theme is Aurora Australis. And the second image shows this Theme enabled. What gives? Carl

Asked by carl_hci 3 সপ্তাহসমূহ আগে

Last reply by carl_hci 3 সপ্তাহসমূহ আগে

How do I include page contents in URL bar history search?

I want firefox to not only cache the URL and page title, but also cache the page contents, so that if I do a URL bar search for a word that was only contained in a page t… (আরও পড়ুন)

I want firefox to not only cache the URL and page title, but also cache the page contents, so that if I do a URL bar search for a word that was only contained in a page that a visited (not in the title or url) firefox finds it. Apparently chrome already does this. Why doesn't firefox? I can't even find a add-on that does this for firefox.

Asked by david.d.campbell 3 সপ্তাহসমূহ আগে

  • মীমাংসিত

The new apostrophe quicksearch-function is a problem for me

Hello There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefo… (আরও পড়ুন)

Hello

There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefox 125.0.3 on a Macbook Air.

This new function makes it very difficult for me to practice touch typing in Firefox, and I would like to turn this function of.

Best regards Max Andersson

Asked by Max Andersson 3 সপ্তাহসমূহ আগে

Answered by TyDraniu 3 সপ্তাহসমূহ আগে

  • মীমাংসিত

Setting Startpage as search engine

What's the best way to set up Startpage private search in Firefox? Should I manually change the settings or install the extension? Also, it seems like Firefox could impro… (আরও পড়ুন)

What's the best way to set up Startpage private search in Firefox? Should I manually change the settings or install the extension? Also, it seems like Firefox could improve the process for us.

Asked by gregcane90 3 সপ্তাহসমূহ আগে

Answered by jscher2000 - Support Volunteer 3 সপ্তাহসমূহ আগে

Tabs bar is scrolling

I can't find a way to disable tabs scrolling. This is highly confusing, I have to always look for my tabs and do extra clicks and scrolling. This is very distracting. Als… (আরও পড়ুন)

I can't find a way to disable tabs scrolling. This is highly confusing, I have to always look for my tabs and do extra clicks and scrolling. This is very distracting. Also those two buttons - "<" & ">" - they occupy extra space. The left one is especially annoying because I expect a "+ new tab" button to be there. I don' want to test/use this new experimental feature, how can I turn this off? Thank you.

Asked by Arseniy Fomchenko 4 সপ্তাহসমূহ আগে

Last reply by jscher2000 - Support Volunteer 3 সপ্তাহসমূহ আগে

How to add a shortcut to Proton Mail sign in, to my MacOS 14 dock to use in Firefox for Mac

I use a MacBook AIr with OS 14.4.1 (Sonoma) and want to add a short cut link to Proton Mail (Free version) that I can put in my MacOS Dock. I am using Firefox 125.03 vers… (আরও পড়ুন)

I use a MacBook AIr with OS 14.4.1 (Sonoma) and want to add a short cut link to Proton Mail (Free version) that I can put in my MacOS Dock. I am using Firefox 125.03 version.

I used to have a link in my Mac Dock but then I tried the trial of their desktop app-- and when that ended recently, I did not know how to set the Dock link up again. I tried directions for other browsers but they did not help.

'The link I want the short cut to go to is' https://account.proton.me/mail so I can sign right in to check my email.

So I checked Proton's support site for help but it has directions to do this ONLY from Safari and another browser, NOT Firefox.

If you can give me some straightforward directions to add the shortcut to Proton Mail sign in back to my Mac Dock, I would be grateful!

I really enjoy and feel safer using Firefox, by the way! thank you

Howard Mangel

Asked by HowardNJ 1 মাস আগে

Last reply by cor-el 1 মাস আগে

Trying to set my tab close button to the left

I am using theme called WhiteSur to imitate Safari, as that is the browser layout I prefer. However, this doesn't change the position of the close tab button and leaves i… (আরও পড়ুন)

I am using theme called WhiteSur to imitate Safari, as that is the browser layout I prefer. However, this doesn't change the position of the close tab button and leaves it on the right hand side. I found a way to change it, using the code .tabbrowser-tab .tab-close-button {

 margin-left: -5px !important;
 margin-right: 2.5px !important;

} Unfortunately, this doesn't change based on the size of the tab, so if I set it to a size that is good for only having 1 tab, it will look bad or be off the screen for the other amounts of tabs. Is there a way to detect the width of the tab or the amount of tabs open and dynamically set the margins based off of this? So I could set it as (width-of-tab)-x and that would always keep the close tab button in the same spot, regardless of tab size. Thanks!

Asked by williamoflowden 1 মাস আগে

Last reply by jscher2000 - Support Volunteer 1 মাস আগে

  • সংরক্ষণ করা হয়েছে

New Tab Addon Button Missing

i use New Tab Override, reinstalled my software, firefox, and lost the button to get a new tab that goes on the address bar. its no longer in customize. ive removed the a… (আরও পড়ুন)

i use New Tab Override, reinstalled my software, firefox, and lost the button to get a new tab that goes on the address bar. its no longer in customize. ive removed the addon and put it back on, started in troubleshoot mode, disabled all other addons, and it never showed back up

can someone help, the guy who made it wont help

Asked by tunescool 6 মাসসমূহ আগে

Last reply by PMDonovan 1 মাস আগে

Icon of Firefox Multi-Account Containers won't show up on top of screen

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browse… (আরও পড়ুন)

Hi, I've been trying to get the Multi-Account Containers Add On to work on my computer for quite some time. Would be very handy for me. When I add the Add On to my browser the icon on the top right of the screen just won't show up. Don't know what I've been doing wrong...? How can I access the container settings someway else? I've made changes to my FF settings in regards to privacy via the recommendation from Sun Knudsen but don't really see an issue here. Thanks in advance!

macOS 10.15.7, Firefox 125.0.3

Asked by Chrstph 1 মাস আগে

Last reply by cor-el 1 মাস আগে