Showing questions tagged: Show all questions
  • Solved
  • Archived

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… (read more)

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 10 months ago

Answered by jscher2000 - Support Volunteer 10 months ago

  • Solved
  • Archived

How to set PDF viewer in firefox to dark mode again (after it stopped working)

I view a lot of pdf documents via firefox, the light gray background makes my eyes and head hurt after prolonged usage. In the past I found a solution on this forum that… (read more)

I view a lot of pdf documents via firefox, the light gray background makes my eyes and head hurt after prolonged usage. In the past I found a solution on this forum that advised to set pdfjs.viewerCssTheme to "2" in about:config. This set the background of pdf viewer to black/dark gray. This has worked for years until recently when the pdf viewer switched to light mode again (pic 1). I checked the about:config settings for pdfjs.viewerCssTheme but there appears to be no change. I tried restarting the browser, setting the theme to 0 and to 2 again, updating browser. Sadly the theme is still light gray. Is there a way to change it again? The desired outcome is in pic 2. I do NOT want to change the color of the pdf pages themselves.

Asked by K 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

How do I disable the mute button on tabs? Setting "browser.tabs.showAudioPlayingIcon" to false does nothing

The mute icon only shows on hover and takes up 50% of the tab size so I'm constantly accidentally muting tabs without realizing it and silencing video calls and the like.… (read more)

The mute icon only shows on hover and takes up 50% of the tab size so I'm constantly accidentally muting tabs without realizing it and silencing video calls and the like. The top Google result for this issue -- rightfully yelled in all caps because this is an absolutely horrid UX -- says to set browser.tabs.showAudioPlayingIcon to false, but that does absolutely nothing in FF 100.0

Asked by exasperated_plum 2 years ago

Answered by user104147805413306348376805769878442569366 2 years ago

  • Solved
  • Archived

Removing the Extensions Puzzle Piece Icon?

I just updated to the latest version of Firefox, and all of a sudden I have a new icon, Extensions, that looks like a puzzle piece, I cant seem to be able to remove it...… (read more)

I just updated to the latest version of Firefox, and all of a sudden I have a new icon, Extensions, that looks like a puzzle piece, I cant seem to be able to remove it....at all.

Asked by Imot 2 years ago

Answered by cor-el 2 years ago

  • Solved
  • Archived

Firefox: Move Find bar to the top

I recently upgraded my system and, after installing and using Firefox, I notice the Find (Ctrl + F) bar is now at the bottom of the window. Whereas, it was previously at… (read more)

I recently upgraded my system and, after installing and using Firefox, I notice the Find (Ctrl + F) bar is now at the bottom of the window. Whereas, it was previously at the top (which is more like every other application I use).

After some head scratching and web searches, I remembered I had to fix this issue previously (after a Firefox upgrade some time back). The method to fix it then could be found here: [there a way to put the Find Bar at top] That link is of course to the same question asked 4 years back.

I have once again followed the procedure there explained per: • Access my Firefox profile folder. In my case:

  C:\Users\<Me>\AppData\Roaming\Mozilla\Firefox\Profiles\5ym42ewi.default

• Create folder therein called ‘chrome’ • In that folder create a file called ‘userChrome.css’ • In that file add text:

  .browserContainer > findbar {
    -moz-box-ordinal-group: 0;
  }

However, after doing that (and restarting Firefox), the Find bar stubbornly remains glued to the bottom of the window.

Can anyone tell me how to solve this issue?

As a separate note to the developers: This issue is long-standing, that a web search reveals is still relevant to many users. Any chance of considering making it a standard option?

Asked by Spinner 3 years ago

Answered by cor-el 3 years ago

  • Solved
  • Archived

Make inbox font bigger in Thunderbird email client

The inbox font in the Thunderbird email client on my Mac is super tiny, and it's very hard to read. I can't figure out how to make it larger. Is there a way to do this? I… (read more)

The inbox font in the Thunderbird email client on my Mac is super tiny, and it's very hard to read. I can't figure out how to make it larger. Is there a way to do this? I really like Thunderbird so far, but if I can't read it, I can't use it.

Thanks! Mark

Asked by mdeaton 3 years ago

Answered by Toad-Hall 3 years ago

  • Solved
  • Archived

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 11 months ago

Answered by Slouch 10 months ago

  • Solved
  • Archived

Firefox header bar missing

The header bar at the top of the screen has disappeared from Firefox when run from my desktop computer (Image 1), but not when run from my laptop computer (Image 2). Wit… (read more)

The header bar at the top of the screen has disappeared from Firefox when run from my desktop computer (Image 1), but not when run from my laptop computer (Image 2). With the desktop, the maximize, minimize etc buttons are now on the same toolbar as the File Edit View etc buttons and there is no indication as to what website is being viewed. This problem occurs even when Firefox is run in Troubleshooting mode. Both instantiations are v. 119.0. How can I get the header back on my desktop instantiation?

And while I'm at it: With the current version of Firefox, the bookmarks toolbar is below the list of open websites, whereas several versions ago it was the other way around, which seems much more intuitive. Is there a way to switch them back so that the bookmarks menu is at the top?

Thanks!

Asked by coffent 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

My Gmail account in Thunderbird won't complete.

My new - and fully oprative - Gmail account is not correctly connected to my Thunderbird ver.102 client. My name@gmail.com folder is established, including (as of yet) a… (read more)

My new - and fully oprative - Gmail account is not correctly connected to my Thunderbird ver.102 client. My name@gmail.com folder is established, including (as of yet) an Inbox sub-folder. Something in setup is failing to allow me to complete the installation.

Now, when Tbird starts - and regardless of what I was doing before shutdown -restart is instanly followed by a Gmail logon screen. Which, when I try to login, fails and invited me to enter a recovery number which is then ignored with an invitaton to open an account. There is probably something wrong in Tbird settings, but having (hopefully) followed all help I can't see what.

Any suggestions where to look?

Asked by peetrobo 1 year ago

Answered by Toad-Hall 1 year ago

  • Solved
  • Archived

Firefox Translation - Turn off

Hi. How come there is no option to turn off "Firefox Translation"? I speak three languages and every time I visit foreign web site, Firefox suggest translation to me. It… (read more)

Hi.

How come there is no option to turn off "Firefox Translation"? I speak three languages and every time I visit foreign web site, Firefox suggest translation to me. It's annoying.

Asked by beyondlightless 11 months ago

Answered by cor-el 11 months ago

  • Solved
  • Archived

How can I remove the two hypens that are automatically added above my signature file?

When I compose a new blank message in Thunderbird, the signature file contains two hyphens that are added above it...like so: (blank page) -- My signature The problem … (read more)

When I compose a new blank message in Thunderbird, the signature file contains two hyphens that are added above it...like so:

(blank page) --

My signature

The problem is that when I _reply_ to a message, those two hyphens are not there. It's just "My signature."

What I would LIKE to do is have my signature actually look like this:

--My Name My Title


But now, when I do that, it looks like this when I compose a new mail:

-- --My Name My Title

It only looks correct when I'm replying to an email. Since the whole point of a signature is to not have to keep fiddling with the same information, I'm hoping there's a way to turn off those pesky two hyphens so that the only hyphens will be ones I've put in the signature myself.

Thank you for any help!

Asked by user239a 1 year ago

Answered by david 1 year ago

  • Solved
  • Archived

navigating forward & back is deeply frustrating

please i am Begging you let me put the forward/backward buttons on the search bar why do i have to open a separate menu to do this ability to Choose what gestures do (fo… (read more)

please i am Begging you let me put the forward/backward buttons on the search bar why do i have to open a separate menu to do this

ability to Choose what gestures do (for example, swiping on the search bar in either direction to navigate history rather than tabs) would also be acceptable, if slightly less convenient (as i suspect something like that would only allow moving forward/back one page at a time, as opposed to simply press-and-holding to pull up all your options to jump to)

i am losing my mind a little bit here i don't understand why it has to be so roundabout

Asked by aft 1 year ago

Answered by Paul 1 year ago

  • Solved
  • Archived

Thunderbird email signature not showing images

I hope someone can help me. Up until the last week or so, I have had no problem with my signature file in outgoing email. I've been using the same signature file for at l… (read more)

I hope someone can help me. Up until the last week or so, I have had no problem with my signature file in outgoing email. I've been using the same signature file for at least 5 years. Suddenly, Thunderbird is blocking my logo image in my signature file in all outgoing mail. Instead, it is showing my alternate text. I am using version 102.6.1 on Windows 10

Asked by david514 2 years ago

Answered by Toad-Hall 2 years ago

  • Solved
  • Archived

How can cache audio/video files from mozilla-temp-files for offline use?

Hello everyone, to archieve some good old games, I use an special version of Firefox. Firefox (MyPal): 29.2.0, with Adobe Flash preinstalled, Disk-Cache For most game… (read more)

Hello everyone,

to archieve some good old games, I use an special version of Firefox. Firefox (MyPal): 29.2.0, with Adobe Flash preinstalled, Disk-Cache

For most games it will suffice: After loading all content online, it will be available offline too. But... some audio/video files will be saved in memory cache - %temp%\mozilla-temp-files\*[random-auffix] - instead of in disk cache. After closing session they get deleted and after restart they are saved again, with another suffix.

Sample file: http://arcaneonlinegame.epizy.com/Arcane/frames_files/midi/Ophelia's Journal.mp3 that is shipped with http://arcaneonlinegame.epizy.com/Arcane/Arcane.htm

How can I tell Firefox to permanent save streamed audio/video files, like Firefox does with everything else? In the end the music should play if I open the browser offline too.

Thank you in advance for your help. Drago

Asked by drago-yoshisabel 1 year ago

Answered by drago-yoshisabel 1 year ago

  • Solved
  • Archived

Thunderbird donation screen - how to suppress it

Hello dear Mozilla (or should I say Thunderbird) crew and community, Some months ago, in December 2022 I think, under Windows 10, my Firefox webbrowser got started whene… (read more)

Hello dear Mozilla (or should I say Thunderbird) crew and community,

Some months ago, in December 2022 I think, under Windows 10, my Firefox webbrowser got started whenever I started Thunderbird, showing a request for donation screen. Having enjoyed the benefits of Thunderbird for a long time, I thought it was reasonable to donate. I hoped the screen would disappear after this, but it didn't. I have searched for solutions to get rid of it, because it slows down TB whenever I want to look into my emails. But sofar, without success. The only things I DID find were that I can get rid of the screen under Linux (as a normal user). Under Windows I can start TB 'as Administrator' and then remove the URL (see below) from the settings. But as I recall it, it reappeared after a couple of restarts of TB even in this case. And starting TB as Administrator gives me no access to my emails which are stored under my user account. Removing the URL, by the way, can not be done through the normal settings screens. I had to go to the "hamburger" menu icon and then select Settings, scroll all the way down and then click on the Configuration Editor button. There I found these three related parameters and their values:

app.donation.eoy.url = https//www.thunderbird.net/thunderbird/102.0/eoy/ app.donation.version = 1 app.donation.eoy.version.viewed = 1

My questions:

1) Why can't I remove the URL for the "end-of-year" donation screen as a normal Windows user?

  Every time I delete it, it's back the next time I start TB.
 (for God's sake, it's almost April by now and I DID donate at year's end ;-)

2) The file 'prefs.js' in my user mail profile/directory seems to hold part of my settings, but it states "DO NOT EDIT THIS FILE". Could I define a 'user.js' file to actually circumvent my inability to remove the URL through the Configuration Editor? 3) Or even better: what IS the right way to remove the donation screen in my situation; or put differently: is this an error (f.e. with user rights) in the Windows version of TB not present in the Linux version?

Thank you in advance for your help or suggestions,

Steijn van Essen From i8088 to i7-980X in 25 years and still waiting …

Asked by Steijn van Essen 1 year ago

Answered by Matt 1 year ago

  • Solved
  • Archived

Inbox does not display sender’s email address

I would like to see the sender's email address in lieu of a name. The inbox SELECT COLUMNS TO DISPLAY does not offer an option to DISPLAY THE SENDER’S EMAIL ADDRESS. … (read more)

I would like to see the sender's email address in lieu of a name.

The inbox SELECT COLUMNS TO DISPLAY does not offer an option to DISPLAY THE SENDER’S EMAIL ADDRESS.

Both From and Correspondents display the same names. Perhaps replacing one of those with the SENDER’S EMAIL ADDRESS?

Asked by hutch10 1 year ago

Answered by Toad-Hall 1 year ago

  • Solved
  • Archived

Thunderbird Menu Options missing

I have no usable Menu options at the top of the Thunderbird email screen. I hit a wrong key yesterday and things such as Write, Reply, Print, Send, Delete, Junk, etc. ha… (read more)

I have no usable Menu options at the top of the Thunderbird email screen. I hit a wrong key yesterday and things such as Write, Reply, Print, Send, Delete, Junk, etc. have disappeared. I read some possible things to help but I do not have III on the upper right of my screen and pressing Alt when opening Thunderbird also does not work. HELP!

Asked by kathynez 1 year ago

Answered by kathynez 1 year ago

  • Solved
  • Archived

'get new mail' button is gone

It looks like Thunderbird updated itself a few days ago and the 'get new messages' (or 'get new mail') button has disappeared. 'F5' works, but I'd like the button back. … (read more)

It looks like Thunderbird updated itself a few days ago and the 'get new messages' (or 'get new mail') button has disappeared. 'F5' works, but I'd like the button back. Can do?

Asked by rayandrews 1 year ago

Answered by zeroknight 1 year ago

  • Solved
  • Archived

How do I turn off web translation in Firefox 118.0.1??

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in pre… (read more)

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in preferences, it shows up on every page I visit.

Asked by gjensse 1 year ago

Answered by TyDraniu 1 year ago