Showing questions tagged: Show all questions

I want to have an automated task that sorts the incoming mail to separate folders

I want to have an automated task that sorts the incoming mail to separate folders. I have done this easily in Outlook, but Firefox's Thunderbird is different and I haven'… (read more)

I want to have an automated task that sorts the incoming mail to separate folders. I have done this easily in Outlook, but Firefox's Thunderbird is different and I haven't figured it out. Any help would be greatly appreciated.

George

Asked by George 2 hours ago

Receiving emails with and without attachments all in the same list

Hi - how I receive my Thunderbird emails have changed. I now have to toggle on the attachment (paper clip) symbol to see emails received and sent that have / don't have a… (read more)

Hi - how I receive my Thunderbird emails have changed. I now have to toggle on the attachment (paper clip) symbol to see emails received and sent that have / don't have attachments. Previously they were all in the same list. I didn't knowingly change any of the settings. I'd like to reset the emails so that all emails are in one continuous list - both with and without attachments.

Very much appreciate it if I could be guided through how to reset this.

Thanks

Steve

Asked by steve622 1 day ago

Last reply by steve622 8 hours ago

Move Tab Icons (favicons) up 1px

Hi All, For some reason my tab icons look a little low, and I would like them more vertically centered. I've been trying to move these icons around using some older cod… (read more)

Hi All,

For some reason my tab icons look a little low, and I would like them more vertically centered.

I've been trying to move these icons around using some older code that doesn't seem to work anymore.

The code below no longer has any effect.

Does anyone know how to move the tab icons up 1 pixel?

Thanks!

/* padding doesn't move them */
.tab-throbber, .tab-icon-image { padding-bottom: 4px !important; }
/* margin doesn't move them */
.tab-throbber, .tab-icon-image { margin-bottom: -2px !important; }
/* can't even turn the icons off LOL */
.tab-icon-image { display:none !important; }

Asked by Slouch 10 hours ago

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

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; }

Asked by Slouch 5 days ago

Last reply by Slouch 23 hours ago

Firefox is not setting my location correctly on a desktop, Android cell phone is fine

I have Firefox on Windows, Linux, and Android. Anytime I use Firefox on a desktop, it sends me to Tornado Alley in Kansas. However, I am not in Kansas, and I don't have d… (read more)

I have Firefox on Windows, Linux, and Android. Anytime I use Firefox on a desktop, it sends me to Tornado Alley in Kansas. However, I am not in Kansas, and I don't have dog named Toto either. I am in the Detroit area. If I use other browsers, I don't have this problem. It only happens on desktop computers. On my cell phone it shows the correct location. I have already done the simple troubleshooting measure (for a year now: clearing cache, uninstall, reinstall, etc...) and NOTHING removes me from this Tornado Alley, Kansas location on the Firefox browser. If I use Chrome, Opera, Edge, etc... I don't get this problem. It must be something in the Firefox program.

Asked by tigerprowlusa 1 month ago

Last reply by tigerprowlusa 15 hours ago

Grouped by (expanded)

Hi there! I made a screen-shot just in case I don't explain this well :) In my inboxes this works well on both my emails - the "groups" 'today, yesterday, last 7, la… (read more)

Hi there! I made a screen-shot just in case I don't explain this well :) In my inboxes this works well on both my emails - the "groups" 'today, yesterday, last 7, last 14 & older' are all expanded all the time. (see image)

This is however not the case in other folders like sent, junk, deleted etc. I need to manually click the name "today/yesterday etc." to expand it. Next time I go to that folder again, they are all 'un-expanded/closed/collapsed' again.

I would like them to be expanded as default all-the-time in every folder I have! Is there a setting for this somewhere that I can set to 'true' or just check a box?

Asked by micke 1 day ago

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

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 1 day ago

Folder layout for new folders

Dear Sirs, I have a common layout for folders. If I create a new folder, Thunderbird 115.10.1 (and previous versions) always uses a different layout. Sometimes I forget … (read more)

Dear Sirs,

I have a common layout for folders. If I create a new folder, Thunderbird 115.10.1 (and previous versions) always uses a different layout. Sometimes I forget to change the layout and when opening the newly created folder I am confused. I find it also annoying to always apply my folder layout to the newly created folders.

Is there any method/setting to define/set the layout for new folders?

Kind regards,

Jens

Asked by FF Konto Jens 2 days ago

Last reply by FF Konto Jens 1 day ago

Replace context menu navigation icons with text only

Hi All, Is there a way to replace the navigation icons on the context menu with their text-only counterparts? I've tried the following code segments which provide less-… (read more)

Hi All,

Is there a way to replace the navigation icons on the context menu with their text-only counterparts?

I've tried the following code segments which provide less-than-optimal results.

This one which worked in FF 88, now removes the icons, but leaves 4 blank buttons in a row with no text...

#context-back image,
#context-forward image,
#context-reload image,
#context-stop image,
#context-bookmarkpage image {display: none !important;}}


This one completely removes the options, but I would like to keep them, and replace them with their text counterparts

#context-navigation,
#context-sep-navigation {
   display:none !important;
}


Please see attached images for the before and after of what I'm trying to achieve.

Might be nice to have the blank icon column to the left of these 4 items so they all line up with the items below, but I can live without that if it's not possible.

Any help is appreciated!

Asked by Slouch 2 days ago

Last reply by Slouch 1 day ago

Thunderbird asks for Master Password twice

When I start Thunderbird, it asks for Master Password right away, and then again just after it opens up. I asked question last year, but didn't get much response. What … (read more)

When I start Thunderbird, it asks for Master Password right away, and then again just after it opens up.

I asked question last year, but didn't get much response.

What can I do to just have it ask one time when starting Thunderbird? I tried disabling "check new messages at startup" on all accounts.

Asked by CSM 1 week ago

Last reply by CSM 1 day ago

Reply Signatures

Has anyone found a way to have a separate "reply signature?" The use-case is that I may send an initial email with a 'complete' signature (first name, lastname, email, p… (read more)

Has anyone found a way to have a separate "reply signature?"

The use-case is that I may send an initial email with a 'complete' signature (first name, lastname, email, phone, etc.). But when the other party replies it would be nice to then reply to that with just my first name. Or at worst, auto-insert the full signature.

I've setup my full signature and auto-populates when I create a new message. But not on the reply.

Any suggestions?

Asked by Eric Gombrich 2 days ago

Last reply by Eric Gombrich 2 days ago

Adding a PNG background to emails produces a "collage" of pictures rather than a single picture

I added a PNG picture as a background to my emails. Instead of a single background picture, it produces a collage (can't think of another word) of multiple copies of the… (read more)

I added a PNG picture as a background to my emails. Instead of a single background picture, it produces a collage (can't think of another word) of multiple copies of the same picture. Any way to just get a single picture?

Asked by PathMan 3 days ago

Last reply by PathMan 2 days ago

Search defaults to UK. How undo? Using Duck Duck Go for search.

My default search engine is Duck Duck Go. I frequently use a VPN. I am usually in North America and want to search sites in North America. When I run a search by typ… (read more)

My default search engine is Duck Duck Go. I frequently use a VPN.

I am usually in North America and want to search sites in North America. When I run a search by typing a search term in Firefox, I get results beginning in UK, and I see that a blue toggle switch has been set to UK. (See image.)

This started 2-3 weeks ago.

How do I set things so that my searches begin in North America?

I have checked "about:config" preferences and do not see anywhere that UK is specified. I don't see a region preference setting, either.

Thank you.

Asked by ezameht 2 days ago

Last reply by ezameht 2 days ago

Homemade Home Page and Virtual Filing Cabinet

I made a private homepage years ago made up entirely of links to web-based AND local folders and files that are grouped into columns of categories like banking, medical, … (read more)

I made a private homepage years ago made up entirely of links to web-based AND local folders and files that are grouped into columns of categories like banking, medical, insurance, budget, etc. I keep it off-line on my desktop. I wrote the code so I could place an external link to a bank for example, next to a local link to the folder on my computer where I download statement pdfs from that bank and other bank files. The web page links displays: MY BANK Chkng/Debit Statements Credit Card Statements Bank Information The top link goes to the bank web page on line while the three lower links open folders on my computer where I save pdfs, txt, images, etc from the bank. Firefox opens the folders as "Index of file:///C:(folder path).

My personal home page is laid out with groupings like this for all sorts of information and associated web links: broker, vendor invoices, medical test, taxes, social security, health insurance, subscriptions etc. Today we get .pdf files with all sorts of information and no help organizing it for easy access. The Firefox browser has become the perfect tool for me. But I learned HTML coding years ago! Not so easy to do for others.

Today, many entities have on-line access that provides downloads like invoices, test results, payments, subscriptions, and much more that replace paper. Creating folders to hold these documents with their own local links on your web/local homepage makes sense to me.

While you can use "File" on Firefox to open a local folder or individual file, you cannot save it as a link. However, you can copy the path and transfer that to an a href=" line of link code in your homepage and build on that method. It's amazing how many types of files can be displayed in a browser that are locally stored. Even a link to a spreadsheet file will open that spreadsheets application. Having a varied list of links with quick access is worth the code-writing time. I wish there was an app to help anyone make their own custom folders and links to the contents in a "my homepage.html" . Is there a product idea in there for you folks?

Asked by NYCPaull 2 days ago

pop up ads

Apparently I have got Malware. I keep getting ad pop-ups on what ever I'm doing, it doesn't matter if I'm online or not. I have installed all kinds of adblocks nothing wo… (read more)

Apparently I have got Malware. I keep getting ad pop-ups on what ever I'm doing, it doesn't matter if I'm online or not. I have installed all kinds of adblocks nothing works. I have disabled Chrome like the internet says to. Still getting them. They are easy to get rid of but very annoying. Please help me. I don't want to restore to factory.

Asked by Keith Fonville 3 days ago

New email colours

Hi, Would appreciate your help with the following: New, unread emails arrive mostly with blue bolded text and a small yellow circle on top left of each message, however … (read more)

Hi,

Would appreciate your help with the following: New, unread emails arrive mostly with blue bolded text and a small yellow circle on top left of each message, however some emails arrive with black bolded text without the small circle. If I click the download (cloud) button all unread blue bolded text emails turn to black bolded text. This doesn't appear right.

How can I make all new, unread emails have either bolded Blue text or Black text (I would like to choose desired option).

Thanks

Asked by ciaran5000 3 days ago

Are Firefox Menus Different in Windows 7 and Windows 10?

Do Firefox menus appear differently in Windows 10 than they do in Windows 7? In Windows 7, I see the normal system menus - square corners, light blue menu item highlight… (read more)

Do Firefox menus appear differently in Windows 10 than they do in Windows 7?

In Windows 7, I see the normal system menus - square corners, light blue menu item highlights, 3D column line on the left, dark drop shadow below and to the right of the menu.

In Windows 10 I notice differences - gray-highlighted menu items, rounded corners, no drop shadow, etc.

I'm not using any code to style the menus.

Please see attached images.

Thanks to all who respond.

Asked by Slouch 4 days ago

Last reply by Slouch 4 days ago

Menu Padding Code Works in FF on Windows 10 but not in Windows 7?

Hi All, Any idea why the menu code I'm using below to reduce padding in menu items is only affecting Firefox in Windows 10, but not in Windows 7? Please see attached im… (read more)

Hi All,

Any idea why the menu code I'm using below to reduce padding in menu items is only affecting Firefox in Windows 10, but not in Windows 7?

Please see attached images.

It's a very strange anomaly. This is true for both FF 125 and FF 115 ESR.

Thanks to all who respond.

/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/ /*

*
* why doesn't this affect the Firefox menu bar in Windows 7?  only in windows 10?
*
*/

menupopup:not(.in-menulist) > menuitem, menupopup:not(.in-menulist) > menu {

 padding-block: 0px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
 min-height: unset !important; /* v92.0 - for padding below 4px */

}

root {
 --arrowpanel-menuitem-padding: 4px 8px !important;

}

Asked by Slouch 4 days ago

Last reply by Slouch 4 days ago