Отображение вопросов с тегом: Показать все вопросы
  • Решено

Cannot add custom shortcut in Search -> Search Shortcut ; Windows 11

Hi so am using version 125.0.1 and on my windows 10 machine I can add custom Search Shortcuts (the Add button is present) but on my windows 11 machine, the same settings … (читать ещё)

Hi so am using version 125.0.1 and on my windows 10 machine I can add custom Search Shortcuts (the Add button is present) but on my windows 11 machine, the same settings page the Add button is dissapeared... Is it a limitation for Windows 11 machines?

Задан suji.lamech 1 месяц назад

Дан ответ jscher2000 - Support Volunteer 1 месяц назад

  • Решено

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… (читать ещё)

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.

Задан beyondlightless 3 недели назад

Дан ответ cor-el 3 недели назад

  • Решено

Filter on display text of sender

Is there a way I can make a filter that responds to the displayed sender (which may be different from the address)? For instance if an email has the header “From: "John D… (читать ещё)

Is there a way I can make a filter that responds to the displayed sender (which may be different from the address)? For instance if an email has the header “From: "John Doe" <john.doe@example.org>”, can I make a filter check if “John Doe” matches a pattern?

Задан Anselm Schüler 1 месяц назад

Дан ответ Anselm Schüler 2 недели назад

  • Решено

Setting border color for focused URL Bar

Hi All, I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus. The following code works for the se… (читать ещё)

Hi All,

I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus.

The following code works for the search bar, but the url bar is receiving a separate blue border around the gray border, instead of changing the color from gray to blue.

Can someone suggest how I might set the url bar to blue (just a single border, not the double it has now), both when it has focus and when it's expanded?

Thank you!

/* set non-focused url & search bars to gray border */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set focused search bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #searchbar:focus-within { border: 1px solid #0078d7 !important; }
/* set focused url bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #urlbar:focus-within { border: 1px solid #0078d7 !important; }

Задан Slouch 2 недели назад

Дан ответ Slouch 1 неделю назад

  • Решено

Unable to install any extensions.

When trying to install any extensions on either the Mozilla Addons website or directly via the Extension settings, it fails to do so. I've attached a screenshot of the M… (читать ещё)

When trying to install any extensions on either the Mozilla Addons website or directly via the Extension settings, it fails to do so.

I've attached a screenshot of the Mozilla Addons website when it fails to install the extension. On some other addons that I've attempted in the past, it just shows the throbber forever.

I have checked the Multiprocess Browser Console and it says that it fails to move the file because it's locked (NS_ERROR_FILE_IS_LOCKED). I have also attached a screenshot of that.

Задан Kate 1 месяц назад

Дан ответ Kate 1 месяц назад

  • Решено

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (читать ещё)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Задан Slouch 2 недели назад

Дан ответ Slouch 2 недели назад

  • Решено

How to Flag Email as NOT SPAM?

There are two "bad email" files in Thunderbird: JUNK and SPAM. I'm still not clear on the difference. For JUNK mail, TB gives us the option to select "NOT JUNK". Good.… (читать ещё)

There are two "bad email" files in Thunderbird: JUNK and SPAM. I'm still not clear on the difference.

For JUNK mail, TB gives us the option to select "NOT JUNK". Good.

But for SPAM, I cannot find the option "NOT SPAM"

1) Why are there separate SPAM and JUNK directories? And why are they managed differently? This seems terribly non-intuitive and inconsistent and just strange.

2) How can I train SPAM filter to not flag good email from trusted senders? For instance, I get email from my wife many times a day for many years. Today, TB put her email into SPAM. Isn't there a simple command to "white list" a sender's email address?

Задан jl11 1 месяц назад

Дан ответ Matt 1 месяц назад

  • Решено

Bookmark this page menu has very small fonts and menu

Hello, I just got a new laptop with windows 11. I just did the latest update to Firefox. Everything is a little large but an internet search addresses these: BUT.... The … (читать ещё)

Hello, I just got a new laptop with windows 11. I just did the latest update to Firefox. Everything is a little large but an internet search addresses these: BUT.... The 'bookmark this page', the star in the URL line, menu is small and the fonts are micro. Zooming or changing fonts in the hamburger menu doesn't correct this. Attached. Thank you.

Задан phyzxengr 1 месяц назад

Дан ответ phyzxengr 1 месяц назад

  • Решено

Can I change display in Sent folder?

This is something I've never encountered, since I hardly ever go to the Sent folder except to look at something I sent. But this was a different task. I've had a series… (читать ещё)

This is something I've never encountered, since I hardly ever go to the Sent folder except to look at something I sent. But this was a different task.

I've had a series of emails from a friend, that my wife wanted me to forward to her so she could see them. So I went to the Sent folder, and forwarded 3 of those emails to my wife. Then she told me she only got one so I went back to Sent and thought they would be at the top of the list, 1-2-3, but that was not what I found. Since those emails were each part of several different threads in the back and forth with my friend, it took me a long time to figure out which email to pick off and resend. I made sure I was sorting them by date, descending, but was bewildered that the listing had the ones I wanted embedded (see screenshot, with the ones I just sent highlighted in red)

So my question is, is there a setting where I could tell Tbird to sort strictly by send date?

Задан SonOfEru 4 недели назад

Дан ответ david 4 недели назад

  • Решено

Mouse-click + modifier key to open a link in private mode?

I'd like to be able to open a link in private mode by holding down some modifier key, then clicking on the link. There are many times that I want to open a link in privat… (читать ещё)

I'd like to be able to open a link in private mode by holding down some modifier key, then clicking on the link. There are many times that I want to open a link in private mode, and a keypress + click would be the quickest way to do it given that one hand typically remains at the keyboard while I use the mouse/trackpad.

I've even added a toolbar button to open a new private browsing window, then dragged and dropped a link onto the button, but that gets a circle with slash icon and nothing more.

Others have asked this question, so, to be clear, none of the following address my question: copying the link then opening the private browsing window & pasting the link, using a customized shortcut/bookmark, opening Firefox in private mode via command line, right-clicking the link then selecting "Open link in new private window".

Thanks for any advice and thank you, Mozilla, for Firefox!

Задан TAP 2 недели назад

Дан ответ zeroknight 2 недели назад

  • Решено

Can not seperate email accounts

I have had to Restore my laptop. Since I have I can not seem to separate my email accounts. I wish them to be kept separate because I use different 'Signatures' for each … (читать ещё)

I have had to Restore my laptop. Since I have I can not seem to separate my email accounts. I wish them to be kept separate because I use different 'Signatures' for each account. Is there a way to separate the accounts in Thunderbird? If not How do I delete all the email accounts connected to the main email account, without affecting any email accounts outside of Thunderbird so that I can then add them individually?

Задан Steve 3 недели назад

Дан ответ Steve 3 недели назад

  • Решено

Add-on no longer on Toolbar

I'm using the OneTab add-on, Enabled. The icon no longer shows on the Toolbar, though it is on the Menu bar next to Firefox View. I ran Remove and then Added it again, … (читать ещё)

I'm using the OneTab add-on, Enabled. The icon no longer shows on the Toolbar, though it is on the Menu bar next to Firefox View.

I ran Remove and then Added it again, hoping the Toolbar Icon would reappear = no go, And I lost all URLs already saved, stupid me. To be clear, clicking the Icon on the Toolbar saves all open tabs.

Is there a fix via Preferences? Thanks. gw

Задан metaguy 1 месяц назад

Дан ответ zeroknight 3 недели назад

  • Решено

remove search from new tab page (not search from address bar)

Just updated a friend's computer from Windows 7 to 10. Installed firefox over previous ESR and now there's no way to remove the search bar from the new tab page. On my … (читать ещё)

Just updated a friend's computer from Windows 7 to 10. Installed firefox over previous ESR and now there's no way to remove the search bar from the new tab page. On my W10 system, the search bar isn't there, not sure how or why, but on her's there's no option NOT to show it as there used to be.

I found some VERY old (2014) info on this but doesn't seem to be up to date.

PLEASE give us our options back and stop taking them away, sheesh, getting as bad as Microsoft.

Is there a workaround for this to remove the redundant search bar from the new tab page since you can search from the address bar?

Thanks!

Задан firefoxsync52 1 месяц назад

Дан ответ zeroknight 1 месяц назад

  • Решено

Changing line spacing in Thunderbird

I want to change the line spacing in my emails to single line including paragraph spacing. Advice given in previous posts says to select Menu then Options. I have clicked… (читать ещё)

I want to change the line spacing in my emails to single line including paragraph spacing. Advice given in previous posts says to select Menu then Options. I have clicked on the 3 bar Menu icon and Options is not there. I clicked on Tools in the Menu Bar and Options is not there either. I apparently have to get to Composition, but cannot find a way of getting there.

Задан Mike 1 неделю назад

Дан ответ david 1 неделю назад

  • Решено

userChrome.css - Help With Customizing Tabs

I made a small CSS customization to my tabs in FF 115 ESR on Windows 7, so they would be flat on the bottom and rounded on the top, looking a bit more like tabs instead o… (читать ещё)

I made a small CSS customization to my tabs in FF 115 ESR on Windows 7, so they would be flat on the bottom and rounded on the top, looking a bit more like tabs instead of buttons.

Looked ok in FF 115 ESR.

However, in FF 125, half the tabs are now cut off, including their text (see attached images).

Also the tabs background is darker in FF 115 ESR, providing more contrast between the tabs and the tab bar. In FF 125, it's almost all white and I can hardly distinguish between the tabs and the tab bar.

Why is there such a big difference in appearance between FF 115 ESR on Windows 7, and FF 125 on Windows 10?

Here is the code I used...

/* ------------------ RESIZE TAB BAR ----------------------------- */ \#TabsToolbar { height: 27px !important; margin-top: -1px !important; margin-bottom: 0px !important; } \#tabbrowser-tabs { height:25px!important; min-height:25px!important; }

.tab-background-start[selected=true]::after, .tab-background-start[selected=true]::before, .tab-background-start, .tab-background-end, .tab-background-end[selected=true]::after, .tab-background-end[selected=true]::before {

 min-height:25px!important;

} /* ------------------ RESIZE TAB BAR END ----------------------------- */

/* ------------------ TAB HEIGHT ----------------------------- */

.tabbrowser-tab {
 max-height: 25px !important;
 border-color: #8f939e;

}

.tabbrowser-tabs {

 max-height: 25px !important;
 border-color: #8f939e;

} /* ------------------ TAB HEIGHT END ----------------------------- */

I inserted backslashes at the beginning of the first 2 lines of code above to preserve the hashtag sign (otherwise it displays an index number before those lines), please ignore the backslashes.

I would like my customizations in Firefox 125 to look like the ones I made in 115 ESR.

Is it possible?

Thanks!

Задан Slouch 3 недели назад

Дан ответ cor-el 3 недели назад

  • Решено

MimeTypes.rdf missing

Hi, I'm using FF on Fedora 39. However Firefox does not remember any file associations. The MimeTypes.rdf file in the profile is missing and is also not created on rest… (читать ещё)

Hi,

I'm using FF on Fedora 39.

However Firefox does not remember any file associations. The MimeTypes.rdf file in the profile is missing and is also not created on restarting the browser.

In the options I've now set the configuration to "Ask whether to open or save files". Now I see a popup when clicking on a file however there is no checkbox with "remember this file associations" (or something similiar).

Задан daswas 1 месяц назад

Дан ответ cor-el 1 месяц назад

  • Решено

Prevent all autocomplete in address bar

My elderly mother has twice (in the last month alone!) been scammed by selecting the first thing that comes along in a Google search. I realize this is simply never going… (читать ещё)

My elderly mother has twice (in the last month alone!) been scammed by selecting the first thing that comes along in a Google search. I realize this is simply never going to change, and I need to take steps to prevent her from ever seeing any sponsored results of any kind, or any kind of address bar autocomplete suggestion.

I have taken several dozen hours of my personal time this past month to repair the damage from her first scam experience (that I know about!), and today's incident made me realize that I have to do much more customization of her browser than I previously imagined. When I told her to never fully trust a Google search, her reply was "but I used Firefox!", and that told me everything I needed to know. It simply cannot be left to her understanding of the internet.

The intended setup is an iPad and a Win11 laptop. I would like to set up Firefox so that the address bar is nothing but an address bar without any kind of autocomplete at all. Is this even possible?

Also, I obviously can't filter every scam known to man, but I would like to specifically block the kind of pop-ups and ads that scammers use. What is a good strategy for this specific purpose? I don't care about legitimate marketing ads, even though they're annoying to me personally.

Задан townie 3 недели назад

Дан ответ townie 3 недели назад

  • Решено

default colors have somehow changed

I accidentally pressed a lot of keys on my keyboard and for some reason the default colors of Firefox have changed. I found out that by using Ctrl+Alt+D that I can switch… (читать ещё)

I accidentally pressed a lot of keys on my keyboard and for some reason the default colors of Firefox have changed. I found out that by using Ctrl+Alt+D that I can switch the colors back to normal or to the colors that now appear automatically, but this only works for one tab. If I open a new tab, it shows the weird colors (see images below). I tried looking up specific shortcuts for Firefox considering the shortcut mentioned before (Ctrl+Alt+D) only works on Firefox. But I can't find any shortcut tied to that combination. I'm unsure what to do and how to fix this.

I would appreciate it if someone could tell me how to fix this.

Задан link 1 месяц назад

Дан ответ zeroknight 1 месяц назад

  • Решено

Common inbox for IMAP accounts

V 115.9.0 (32-bit) Good day, I have K9 as my mail client on my Android phone. In K9 there is the possibility to display all incoming mails of my different IMAP accounts i… (читать ещё)

V 115.9.0 (32-bit) Good day, I have K9 as my mail client on my Android phone. In K9 there is the possibility to display all incoming mails of my different IMAP accounts in one folder (Common inbox). Is it possible to set up such a folder in Supernova? Thanks for detailed instructions Stefan

Задан sliebe 1 месяц назад

Дан ответ david 1 месяц назад