• Solved

Darstellung

Sehr geehrte Damen und Herren, ich mußte leider Thunderbird neu installieren und seit dem erscheinen Nachrichten nur noch in seperaten Fenstern. Normalerweise war die Dar… (read more)

Sehr geehrte Damen und Herren, ich mußte leider Thunderbird neu installieren und seit dem erscheinen Nachrichten nur noch in seperaten Fenstern. Normalerweise war die Darstellung 2geteilt: Oben die Nachrichten und unten die Inhalte. Wie stell ich das wieder her?

Mit freundlichen Grüßen Peter Treek

Asked by peter.treek 1 month ago

Answered by peter.treek 1 month ago

  • Solved

Gmail endless login loop (but only in Firefox)

Hi I've been having an issue logging into Gmail using Firefox. I've used both Gmail and Firefox for years and have never had a problem, but I now get stuck in an endless… (read more)

Hi

I've been having an issue logging into Gmail using Firefox. I've used both Gmail and Firefox for years and have never had a problem, but I now get stuck in an endless loop on the Gmail login page. I select my account, enter my password, then get sent back to the account selection page.

The problem seems to be relating to me trying to link two Gmail addresses so that mail from one is forwarded to the other. I set up one account this way without any issue, but when I went to do it with a different account, I got an error code. After that, I was logged out of Gmail in Firefox and haven't been able to log back in.

Things I've tried so far:

  • Using a different browser. I can log in without issues in Chrome.
  • Logging in with a different method. Neither my password nor my passkey work.
  • Logging in with a different Gmail account. All of my accounts seem to be stuck in this way.
  • Disabling all my extensions. This doesn't help.
  • Clearing Firefox's cache. No luck here.
  • Restarting Firefox and restarting my PC. Turning it off and on again doesn't fix it.
  • Contacting Google support. They said they think it's a browser issue as I don't have any problems using Chrome.
  • Using Firefox's private browsing mode. This does work and I can log in to Gmail. However, I don't know exactly what the problem is because I've disabled all my extensions and cleared the cache in regular browsing mode and still can't log in that way.

So I have a partial solution (using Firefox's private browsing mode) but it's not a long-term fix. What else can I try? Has anyone else seen this problem before and been able to fix it?

Asked by alexblake2 1 month ago

Answered by zeroknight 1 month ago

  • Solved

Drag-n-drop madness

Somebody thought that it is a GREAT idea to make drag-n-drop cursor a GIANT rectanglular thumbnail of the emails being dragged. No, this is a horrible idea because that … (read more)

Somebody thought that it is a GREAT idea to make drag-n-drop cursor a GIANT rectanglular thumbnail of the emails being dragged.

No, this is a horrible idea because that thumbnail covers the target of the drag-and-drop.

Either REVERT this IMMEDIATELY or let us know how to disable and revert to the simple drag-n-drop mouse cursor that does not obstruct the target of the drag.

And in the future AVOID any GUI changes that are not ABSOLUTELY NECESSARY. With these poorly thought through, extremely annoying changes you are only causing damage and aggravation.

Asked by yekos82264 6 days ago

Answered by sfhowes 6 days ago

  • Solved

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (read more)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Asked by Slouch 2 weeks ago

Answered by Slouch 2 weeks ago

  • Solved

Add eyedropper tool to toolbar

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality.… (read more)

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality. I have power-toys but I hate to see this tool needlessly depreciated. My workflow needs to sample many colors at a time making the menu navigation needless. PLEASE let there be a way to add it to the toolbar, I hope there is. Thanks for your time

Asked by bromraven 2 weeks ago

Answered by zeroknight 2 weeks ago

  • Solved

virtual Console of dell idrac 8 not working

We still use some Dell 13g servers equipped with idrac 8. When I'm trying to launch the virtual Console the window opens up but nothing shows. This used to work fine in … (read more)

We still use some Dell 13g servers equipped with idrac 8. When I'm trying to launch the virtual Console the window opens up but nothing shows. This used to work fine in previous versions of Firefox. I can't tell from which version it stopped but it's not long ago. Also idrac 9 console works fine in Firefox When trying to open console idrac 8 in Chrome it works fine Any idea what could be causing it? Any config switch to tweak?

Asked by markatdxb 3 weeks ago

Answered by zeroknight 2 weeks ago

  • Solved

Website page does not fully load

This link does not fully load using Firefox, but does using Chrome. https://act.environmentaldefence.ca/page/147607/petition/1 I am unable to sign the petition because … (read more)

This link does not fully load using Firefox, but does using Chrome.

https://act.environmentaldefence.ca/page/147607/petition/1

I am unable to sign the petition because the whole form does not show up in Firefox.

Asked by SueWitch 4 weeks ago

Answered by cor-el 4 weeks ago

  • Solved

Downloaded CSV file gets saved in XML format

I use a web application that lists items in a table, which provides a link to download the table as a CSV file. It used to work fine in previous versions of Firefox. Howe… (read more)

I use a web application that lists items in a table, which provides a link to download the table as a CSV file. It used to work fine in previous versions of Firefox. However, in the current version, while the file save dialog defaults to a filename that ends in .csv and CSV is selected in the "Save as type:" drop-down, the data in the file that Firefox actually saves is in XML rather than CSV format. I don't know in which version of Firefox this behavior changed, as it's been a couple years since I tried to use this feature. Or I suppose it actually could be a new bug. I do know that when I use the same feature in Microsoft Edge, it saves the CSV file in the correct format, so this behavior seems to be peculiar to Firefox, rather than anything wrong with the web application.

Asked by KevinR1 3 weeks ago

Answered by zeroknight 3 weeks ago

  • Solved

Blacklisting

Hi, I am looking for some help. I am using Windows 10, Comcast internet, and a VPN. I get error message when my VPN is on saying that my IP Address has bee blacklisted … (read more)

Hi, I am looking for some help. I am using Windows 10, Comcast internet, and a VPN. I get error message when my VPN is on saying that my IP Address has bee blacklisted and I can not send or receive emails using Thunderbird. I also get an error within Thunderbird. My VPN Service says its either Comcast or Thunderbird. Been working with Comcast on the issue. Could it be a Thunderbird issue? My VPN Service says to reinstall Thunderbird but no guaranties that will help. Please let me know if there are any solutions I can try. Otherwise I may need to pay more for a dedicated IP Address. Thanks Marc

Asked by MB 2 weeks ago

Answered by MB 2 weeks ago

  • Solved

Crash on Startup

Hello! I've recently switched to Firefox from Opera. However: After the browser Closes, It will always Refuse to boot up. Even Shift-Click Doesn't work. It opens, but Cra… (read more)

Hello! I've recently switched to Firefox from Opera. However: After the browser Closes, It will always Refuse to boot up. Even Shift-Click Doesn't work. It opens, but Crashes almost Instantly. OS: Windows 11 (Build 23H2)

Asked by Aecth 2 weeks ago

Answered by zeroknight 2 weeks ago

  • Locked

Firefox is a POS

I am tired of this [removed] browser quitting, even when I don't have it open...I am going to uninstall it and NEVER install it again...I tried a full uninstall to see if… (read more)

I am tired of this [removed] browser quitting, even when I don't have it open...I am going to uninstall it and NEVER install it again...I tried a full uninstall to see if it would fix whatever the [removed] issue with it was, but it is doing the same [removed] again!...I don't have this problem with any other browser I use on my system (Chrome, Brave, Opera and Tor)...I am tired of dealing with this [removed], so you can just take your [removed] and shove it!!!

How the hell does a browser crash when it isn't even being used???!!!

No need to respond and ask for any logs or other [removed], because it will all be gone!!!

Asked by david822 2 weeks ago

Last reply by Paul 2 weeks ago

  • Solved

FireFox Download Excel File in D365 System But Change to HTML File

Dear all, We develop a system on D365 platform. On Chrome enviroment, I click the export option, it will download the excel file, I can open it on Excel. However, I cli… (read more)

Dear all,

We develop a system on D365 platform. On Chrome enviroment, I click the export option, it will download the excel file, I can open it on Excel. However, I click the export option on FireFox, it will download the excel file but I can't open it on Excel. When I use the notepad to open the file to see the content, I found the file become HTML content. I can see the file on web broswer. I don't know why the file content will be change HTML content when I use the Firefox to download it.

Please help....

Andrew

Asked by luckyhohk 4 weeks ago

Answered by zeroknight 4 weeks ago

  • Solved

netflix

Netflix all of a sudden wont work on firefox after update. still works on edge and my computer in other room which has an update firefox popup that i have not done yet. i… (read more)

Netflix all of a sudden wont work on firefox after update. still works on edge and my computer in other room which has an update firefox popup that i have not done yet. i reset drm already. it wont even sign in through firefox. i was on the phone with netflix for an hour they said use chrome which i hate or edge which is equally horrible but both work just not firefox. f7111-1957-205002 this code popped once. never had this kind of problem before. i already cleared cash and redownloaded firefox and all that jazz.

Asked by Mindblender 2 weeks ago

Answered by zeroknight 2 weeks ago

  • Solved
  • Locked

Address bar suggestions suddenly wrong

As of an hour ago suddenly all of the usual suggestions and autofill with bookmarks in my address bar are wrong and out of order. I didn't close out of or update Firefox,… (read more)

As of an hour ago suddenly all of the usual suggestions and autofill with bookmarks in my address bar are wrong and out of order. I didn't close out of or update Firefox, I was just browsing online. I didn't change anything in my settings or have opened that up in days at the minimum. I cannot figure out how to either revert back or tell Firefox to not show me these choices so I can get my old ones.

I'll give an example: When I typed in "ma" it would show me mangadex.com, which I often go to. Now when I do it not only is 5th on the list it shows up and fills in "https://www.manticgames.com/", which I don't have that specific page bookmarked. I have "https://www.manticgames.com/games/kings-of-war/" bookmarked, but not that homepage. But now all of a sudden it is showing me the homepage of that site when I begin to type in "ma".

This is incredibly irritating and I have no idea why it's doing this at me out of nowhere. I don't want about anything showing up besides my bookmarks and specifically only the pages I bookmarked.

Asked by konahrik20 4 weeks ago

Answered by zeroknight 4 weeks ago

  • Solved

email

when I try to send an email you ask for a pass word for jojack@dslextreme which I havent had for years 2 2 … (read more)

when I try to send an email you ask for a pass word for jojack@dslextreme which I havent had for years













2









2

Asked by Jack Martin 4 weeks ago

Answered by christ1 3 weeks ago

  • Solved

Printing email

When I want to print an email I want the body of the email and I do not want the header information. How do I remove this unwanted script at the top of the email? I have … (read more)

When I want to print an email I want the body of the email and I do not want the header information. How do I remove this unwanted script at the top of the email? I have tried ticking and unticking the tick-box for headers and footers in the print dialog to no avail. This question has been asked before but was archived.

Asked by graywallis 2 weeks ago

Answered by Bogomil Shopov - Бого 2 weeks ago

  • Solved

New computer problems

I purchased a new computer, was finally able to download Firefox. When I go to use it, frigging Microsoft BING come up. How do I fix it? Thank you for your help. Susan… (read more)

I purchased a new computer, was finally able to download Firefox. When I go to use it, frigging Microsoft BING come up. How do I fix it? Thank you for your help. Susan

p.s. I am at work, the new computer is at home., The version of Firefox was downloaded yesterday and the operating system is Windows 11

Asked by Susan Gatewood 6 days ago

Answered by TyDraniu 6 days ago

  • Locked

Tineye worked great until i created a new account, now it won't work says "allow cookies' and I don't know how

PLEASE READ THOROUGHLY - Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until… (read more)

PLEASE READ THOROUGHLY - Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until now (as of yesterday). Now it won't search, a verify you're human window comes up, and I have to keep clicking squares, which I do - but then it says to allow cookies and start over. Well I don't want to allow cookies (Firefox-Mozilla kinda encourages using their tools to block cookies, which I much prefer), and I CANT FIND WHERE TO ALLOW (not yelling its just that I said this before and it wasn't noticed) cookies even if I did (I went to Firefox preferences all I could find was under privacy & security cross-site cookies but that did nothing) and I don't want to disable my VPN. Maybe I should mention that I just added or started a Mozilla account, as I have had immense trouble with my aol emails, and am trying to move everything over to a gmail account. My sign in to Firefox was the aol email, and I had to try (I thought I did it) add another account, which I think I did successfully. So it was right after that, that all this started. Help please! Thank you! I did get the following reply, saying to allow cookies (BUT I DON"T KNOW HOW OR WHERE TO DO IT) and something about a new browser profile and to stay out of my sync account, and I APOLOGIZE, but I have no clue what all that means. What is a broweser profile, what is a sync account and how do I stay out of it? I guess well I know i'm not too smart about this kinda stuff, so I apologize but I think I need detailed step by step what to do to fix this. I know thats a lot of typing, sorry.

Asked by PocketDan 2 weeks ago

Last reply by NoahSUMO 2 weeks ago