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

Open previous windows and tabs

OPEN PREVIOUS WINDOWS AND TABS is unchecked but upon startup firefox always tries to do this and I get an error message. Computer crashes, shutoffs, sleep mode and Firefo… (читать ещё)

OPEN PREVIOUS WINDOWS AND TABS is unchecked but upon startup firefox always tries to do this and I get an error message. Computer crashes, shutoffs, sleep mode and Firefox wants to go to my previous windows and tabs : I HAVE IT UNCHECKED FOR A REASON, I DON'T WANT TO GO TO PREVIOUS TABS.

Задан charma_craven 50 минут назад

How do we disable QUIC with the latest ADMX or via registry entry on Windows 10

Hello, How can we disable QUIC with the latest ADMX or via registry entry on Windows 10. I see not settings under ADMX that can assist in doing so. I dont mind implemen… (читать ещё)

Hello, How can we disable QUIC with the latest ADMX or via registry entry on Windows 10. I see not settings under ADMX that can assist in doing so. I dont mind implementing a registry entry in GPO as well.

Thanks

Задан joel.escutia 2 часа назад

Help me understand Mozilla philosophy

What is going on with the designers of Thunderbird, and Firefox? There was a time when they had these programs working real well, they were user friendly and intuitive. … (читать ещё)

What is going on with the designers of Thunderbird, and Firefox?

There was a time when they had these programs working real well, they were user friendly and intuitive.

Lately, with each release, more and more functionality seems to be push off into "add-ons"

For example, in Thunderbird the "Mark" button toggled the email as read or not and there was a little down arrow to the right I could click with more options.

Now, the little arrow button is still there, but it is always a drop down menu, so to mark a message as read I must make 2 clicks. I asked for help, but got a response to "try these addons"

There have been similar changes to Firefox.

Are the designers getting lazy and relying in third party people to do their work for them? Perhaps the new breed of designers are simply unable to it include working solutions in future versions? Is there a management decree to stop making these programs good, and off load these features to the end user (now I have to spend a lot of time researching a solution, and installing an add on that may or may not do what I want)

Perhaps there is some financial incentive, I guess it saves Mozilla labor costs of they can get volunteer third party people to do their work for them.

Thoughts?

Mark.

Задан Cool Javelin 22 часа назад

Последний ответ от Agent virtuel 9 часов назад

unnecessary folders in the tree

Hello. Some time ago, empty folders appeared in the side panel of my account, I cannot delete them - how to delete them. Attached is an image with selected folders. … (читать ещё)

Hello. Some time ago, empty folders appeared in the side panel of my account, I cannot delete them - how to delete them. Attached is an image with selected folders.

Задан mmm m 12 часов назад

Последний ответ от david 7 часов назад

Search in Edge - how to get rid of it?

I want my context menu in Firefox for Android to be as clean as possible. But there are annoying actions in it: Search in Edge and "Create Note" that runs Microsoft Edge … (читать ещё)

I want my context menu in Firefox for Android to be as clean as possible. But there are annoying actions in it: Search in Edge and "Create Note" that runs Microsoft Edge and Microsoft OneDrive respectively. I need these apps from time to time so I don't want to uninstall them. Is there a way to turn off this integration between Firefox and Microsoft-related apps?

Thanks.

Задан mz71 9 часов назад

URL bar popup menu text spaced out (kerning/tracking issue)

Hi All, Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125? It's the only menu I've found like that. See attached scre… (читать ещё)

Hi All,

Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125?

It's the only menu I've found like that.

See attached screenshots. The one on the left is FF 115, and the one on the right is FF 88 (more normal).

Is there a way to fix this?

And also remove that "Add" menu item at the bottom?

If so, please reply!

Задан Slouch 13 часов назад

Permanently deleting emails

I am now using Outlook (imap). When I try to permanently delete a bunch of emails it deletes them and then I get a synchronizing inbox bar and the 1,000 or so emails come… (читать ещё)

I am now using Outlook (imap). When I try to permanently delete a bunch of emails it deletes them and then I get a synchronizing inbox bar and the 1,000 or so emails come right back into my inbox. How do I avoid this if I am using Thunderbird?

Example: Have 9600 emails delete 2500 and notifies me that they will be permanently deleted but they never are. They just return a few minutes later. Thanks

Задан bigwfilm 15 часов назад

Change URL border color when focused

Hi All, I would like to change the url border color when it has the focus to blue. The code below works, except when you press Escape. After hitting Escape, the urlbar… (читать ещё)

Hi All,

I would like to change the url border color when it has the focus to blue.

The code below works, except when you press Escape.

After hitting Escape, the urlbar still has the focus but its border changes back to gray. It should remain blue.

I would also like to remove the box-shadow after pressing Escape, when the urlbar is not expanded (to mimic the behavior of FF 88).

The url and search input fields also do the same goofy thing Windows 10 does - the cursor stops blinking after 5 blinks and remains frozen. Any way to remove that behavior and keep the cursor blinking? If not, no big deal, the other stuff above is more important.

Any code suggestions to get that behavior are welcome!

/* set the initial borders of the urlbar and search bar to gray */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set urlbar border to blue when focused */
#urlbar[breakout][breakout-extend] #urlbar-background {
   border-color: #0078d7 !important;
}

Задан Slouch 23 часа назад

Последний ответ от Slouch 15 часов назад

  • Решено

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 1 неделю назад

Дан ответ Slouch 23 часа назад

Offidocs

How do I get rid of this on my Firefox browser it keeps coming up all the time??? https://www.offidocs.com/media/system/app/view_edit_pdfeditor_nav.php?myServerhost=tut&… (читать ещё)

Задан thinkingofhow 17 часов назад

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

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.

Задан Arseniy Fomchenko 3 дня назад

Последний ответ от jscher2000 - Support Volunteer 23 часа назад

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

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

Задан FF Konto Jens 4 дня назад

Последний ответ от Matt 1 день назад

  • Решено

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

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

Задан Slouch 2 дня назад

Дан ответ cor-el 1 день назад

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

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

Задан ciaran5000 5 дней назад

Последний ответ от Matt 1 день назад

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

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?

Задан PathMan 5 дней назад

Последний ответ от Matt 1 день назад

how do i remove the mute tab button when hovering over tabs with audio playing

I often have many tabs open (25+) I have made it so tab shrink way more then normal (I like the way chrome handles tabs where they basically just shrink infinitely. Fire… (читать ещё)

I often have many tabs open (25+) I have made it so tab shrink way more then normal (I like the way chrome handles tabs where they basically just shrink infinitely. Firefox doesn't do it's even with my twerks but ohwell.)

so when i want to click on a tab with audio playing at a small size i often mute the tab instead of clicking on the tab

Where and how can i remove the mute button that appears when hovering over tabs with audio playing?

I have never found that mute button useful so removing it will not impact me

Задан andreasdevantier 3 дня назад

Последний ответ от cor-el 1 день назад

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

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

Задан George 2 дня назад

Последний ответ от jonzn4SUSE 1 день назад

  • Решено

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

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

Задан steve622 3 дня назад

Дан ответ david 3 дня назад

Is it possible to filter messages by formatting? I'm receiving spam in italics and bold that no one else sends in.

I filter messages to move spam to my trash folder. I don't use the spam & junk functions. I'm on some oddball's list who sends all their spam in bold italics and an … (читать ещё)

I filter messages to move spam to my trash folder. I don't use the spam & junk functions.

I'm on some oddball's list who sends all their spam in bold italics and an uncommon font.

Easy to spot but it's easily 30 a day. I'd love to filter them. I don't see a 'by formatting' option.

Any ideas? Thanks!

Задан curls3 4 дня назад

Последний ответ от Matt 2 дня назад