Showing questions tagged: Show all questions
  • Solved
  • Archived

Stop new tabs from being focused

On some websites (namely, twitter), middle clicking a post opens it in a new tab. However, whenever this happens, the new tab is always focused, is there a way to prevent… (read more)

On some websites (namely, twitter), middle clicking a post opens it in a new tab. However, whenever this happens, the new tab is always focused, is there a way to prevent this from happening?

This does not occur on websites such as Youtube.com, where middle clicking a video opens it in a new tab, but does not focus it. This is the preferred result.

Likewise, when middle clicking a bookmark, the newly created tab is also immediately focused. Is this preventable aswell?

Thank you for your time.

Asked by suliman_H 2 years ago

Answered by cor-el 2 years ago

  • Locked
  • Archived

Unable to type a "space"

When typing comments on a web blog, after the spacebar is used, the first letter of the next word eliminates the previously typed space. So what I end up with is all word… (read more)

When typing comments on a web blog, after the spacebar is used, the first letter of the next word eliminates the previously typed space. So what I end up with is all words in a sentence running together. Tried other browsers and they work fine. Changed keyboard as well no joy. Typing is normal in applications like adobe, word, etc..... Only happens during Firefox use......... Uninstalled and reinstalled Firefox, also no help..... How do I fix ?

Asked by doej79779 2 years ago

Last reply by cor-el 2 years ago

  • Solved
  • Archived

Other Bookmarks in the Firefox Toolbar is missing

I had an arrow on the right side of my FF Toolbar for "Other Bookmarks". Recently it went missing. I have many bookmarks under that heading, and can get to them through… (read more)

I had an arrow on the right side of my FF Toolbar for "Other Bookmarks". Recently it went missing. I have many bookmarks under that heading, and can get to them through the Bookmarks Manager, but no arrow on the Toolbar. How can I get it back?

Asked by Barry_Merchant 2 years ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

print settings - edit header and footer

hi, i'm using FF (version 98 at the moment) to print local files. It is key to me to edit header and footer for each print! the only solution i found so far to edit them… (read more)

hi,

i'm using FF (version 98 at the moment) to print local files. It is key to me to edit header and footer for each print! the only solution i found so far to edit them at all, is to go to about:config and for example search for print.print_headerleft. Besides that is not usable at all, it simply doesn't work! The header and footer remain the same. Please tell me how can i change header and footer?

If you delete the, in my opinion much better "page setup", why don't you include all it's funktions in the new print dialog?

another problem is the size of the new print preview! it's much to small! make it resizeable please.

Or just give us back the "page setup". That would be a big advantage over chrome and edge, which suffer the same printing problems.

Thanks

Asked by forinves 2 years ago

Answered by jscher2000 - Support Volunteer 2 years ago

  • Solved
  • Archived

Display Bookmarks

I have 2 laptops I will call OLD and NEW. Both have Firefox Browser 104.0.2. I have the Menu Bar at the upper left corner for both OLD and NEW. On OLD when I click … (read more)

I have 2 laptops I will call OLD and NEW. Both have Firefox Browser 104.0.2. I have the Menu Bar at the upper left corner for both OLD and NEW.

On OLD when I click the Bookmarks link in the Menu Bar, i see a few links (Manage Bookmarks, Bookmark current tab, etc). Then below the links I see all my bookmarks listed. I DO NOT have to click on a link to see my bookmarks.

On NEW when I click the Bookmarks link in the Menu Bar, I also see a few links (Manage Bookmarks, Bookmark current tab, etc). And then nothing else. I have to click a link to see bookmarks. How do I get NEW to display my bookmarks without having to click a link?

Asked by dobbsa 1 year ago

Answered by jonzn4SUSE 1 year ago

  • Solved
  • Archived

Google search stops working

Hello! After updating to the latest version of Firefox (100.0.2, 64-bit), I notice that Google search stops working every now and then. By stops working, I mean I can't u… (read more)

Hello! After updating to the latest version of Firefox (100.0.2, 64-bit), I notice that Google search stops working every now and then. By stops working, I mean I can't use their website https://www.google.com or search using Firefox's address bar or search bar. Searching with other search engines like Bing is working normally. In order to get Google search working again, I have to close and restart Firefox. However, after some time, it stops working again. How can I fix this problem?

Asked by frankT68 2 years ago

Answered by cor-el 2 years ago

  • Solved
  • Archived

Media player issue

My FireFox media player was working fine this morning. Now it will not play the mp3 files I need to play for my work. Also, there's no sound on YouTube when I use FireFox… (read more)

My FireFox media player was working fine this morning. Now it will not play the mp3 files I need to play for my work. Also, there's no sound on YouTube when I use FireFox. I have system sounds on my computer, and I have sounds on Google Chrome, but there are no sounds on FireFox. The media player will open with the mp3 files, but it does not move or play at all. I disabled my antivirus and it still won't work. So that is now fully back on. I uninstalled and reinstalled, restarted my computer, I have done so many things over the last 4 hours and nothing is working. There was a Windows update today that happened shortly before this problem occurred.

Asked by beezgram 1 year ago

Answered by beezgram 1 year ago

  • Solved
  • Archived

Expired cookie breaks Azure AD B2C auth (with Blazor and MSAL)

Hi all, is expired cookies management changed lately? Authentication doesn't work anymore in following use case. Question is all about FF for windows, while usually I'm o… (read more)

Hi all, is expired cookies management changed lately? Authentication doesn't work anymore in following use case. Question is all about FF for windows, while usually I'm on FF Android, Edge and Chrome for Windows and all these browsers are working correctly.

My working web app (static blazor wasm standalone) is interactively authenticating in Azure AD B2C using Microsoft.Authentication.WebAssembly.Msal library (like MSAL.js), API is an Azure Function protected through AAD B2C.

Login request successfully invokes Signin/Signup B2C flow with popup to myb2ctenant.b2clogin.com but breaks navigating to auth protected pages or backend apis.

From DevTools I see that every request to following b2c endpoints sets an expired cookie (expired 10 years before, year is now 2012):

When user clicks login: GET /myb2ctenant.onmicrosoft.com/b2c_1_sinsup/v2.0/.well-known/openid-configuration

Returning from login confirmation: GET /myb2ctenant.onmicrosoft.com/B2C_1_SInSUp/api/CombinedSigninAndSignup/confirmed?rememberMe=false&csrf_token=xxx

for example: Set-Cookie: x-ms-cpim-trans=; domain=myb2ctenant.b2clogin.com; expires=Fri, 14-Sep-2012 12:46:46 GMT; path=/; SameSite=None; secure; HttpOnly

FF registers this warning in console:

Cookie “x-ms-cpim-trans” has been rejected because it is already expired

Following when MSAL execute a request to /myb2ctenant.onmicrosoft.com/b2c_1_sinsup/oauth2/v2.0/authorize?xxxx

Response always contains:

Location: https://blazorapp.xx.web.core.windows.net/authentication/login-callback#error= interaction_required&error_description=AADB2C90077%3a+User+does+not+have+an+existing+session+and+request+prompt+parameter+has+a+value+of+%27None%27.%0d%0a

All other browsers are working... Thanks in advance for any help

Asked by croma 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Blinking Cursor - Insertion point to thin

I just upgraded to a 4k monitor and the blinking cursor is so thin I can not see it. I have adjusted the thickness in windows 10 with took care of the issue with Micros… (read more)

I just upgraded to a 4k monitor and the blinking cursor is so thin I can not see it. I have adjusted the thickness in windows 10 with took care of the issue with Microsoft applications but I can't figure out how to make it thicker in Firefox.

I've tried changing from Firefox theme to System theme but there was no change. Fonts is set to Segoe UI 17.

I have System theme -- auto enabled.

Any suggestions?

Asked by JD 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

https://www.washingtonpost.com/ loading issue on firefox

When I open https://www.washingtonpost.com/ it loads but after a few seconds it goes blank. This started a few days ago and only happens on firefox. … (read more)

When I open https://www.washingtonpost.com/ it loads but after a few seconds it goes blank. This started a few days ago and only happens on firefox.

Asked by TVLoC 2 years ago

Answered by FredMcD 2 years ago

  • Solved
  • Archived

The mouse-left click button does not work since last two updates

The mouse-left click button does not work since last two updates! The link is OK, floating menu with right click can open it in new tab, but left-click on buttons, divs,… (read more)

The mouse-left click button does not work since last two updates!

The link is OK, floating menu with right click can open it in new tab, but left-click on buttons, divs, links is dead for a while

Something was changed in Firefox in the wrong direction.

Please help

Asked by mesasartworks 1 year ago

Answered by mesasartworks 1 year ago

  • Solved
  • Archived

Firefox Account User has Died

My husband was a long-time Firefox user and recently passed away. I am the sole beneficiary and executor of his estate and provide a copy of the will and death certifica… (read more)

My husband was a long-time Firefox user and recently passed away. I am the sole beneficiary and executor of his estate and provide a copy of the will and death certificate if necessary. The issue here, is unlike me, I cannot find the Firefox account to sync his passwords to my machine. I do have access to his machine and could open each web site and copy the information to a spread sheet if necessary - but obviously not a great workaround. So is there any way to gain access to that password.

Now for the obvious question - it's just a matter of equipment: he used a trackball, I prefer my mouse and I am considerably more comfortable with the keyboard on my machine.

Any help you can offer would be very helpful!

Best regards! Loralie

Asked by loralie 1 year ago

Answered by loralie 1 year ago

  • Solved
  • Archived

Yoututbe comments not being displayed

Youtube comments are not showing up. Youtube live chat works fine. Issue started happening recently on both my PC and laptop. I checked other browsers and this issue does… (read more)

Youtube comments are not showing up. Youtube live chat works fine. Issue started happening recently on both my PC and laptop. I checked other browsers and this issue doesn't exist there.

Asked by nihal.voldemot 1 year ago

Answered by jonzn4SUSE 1 year ago

  • Solved
  • Archived

Reader View icon missing.

READER VIEW icon is missing from the toolbar, and ENTER READER MODE is missing from the VIEW menu, even on sites/pages where it is enabled on my other computer. Firefox v… (read more)

READER VIEW icon is missing from the toolbar, and ENTER READER MODE is missing from the VIEW menu, even on sites/pages where it is enabled on my other computer. Firefox version 104.02

Asked by rob.riley 2 years ago

Answered by cor-el 2 years ago

  • Solved
  • Archived

firefox not opening files with registered application

Firefox is forcing me to download a lot of temporary files instead of opening them in their native application, resulting in cluttering up my hard drive and making me unn… (read more)

Firefox is forcing me to download a lot of temporary files instead of opening them in their native application, resulting in cluttering up my hard drive and making me unnecessarily having to clean up after the browser.

How can I fix this privacy invading feature?

Asked by Colin WG 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Unable to delete emails in yahoo

I am unable to delete my emails on Yahoo through Firefox. The trashcan icons on the left side next to the trash tab are missing. The entire upper toolbar doesn't work (… (read more)

I am unable to delete my emails on Yahoo through Firefox. The trashcan icons on the left side next to the trash tab are missing. The entire upper toolbar doesn't work (the click all box, the delete icon, etc.). I cannot even delete the emails themselves from inside the email.

 This started about 5 days ago.  The deletion of emails work just fine through chrome.

Asked by xeno_6804 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago