URL bar - highlight color of drop-down selections

Hi All, I would like to change the color of the two highlighted URLs in the address bar's drop down list to what they were in FF 88 - the one that is currently selected … (funda kabanzi)

Hi All,

I would like to change the color of the two highlighted URLs in the address bar's drop down list to what they were in FF 88 - the one that is currently selected with the cursor keys, and the one the mouse pointer is over.

The first screenshot below is of the highlight colors in FF 115/125. You can see two different shades of gray, the darker gray being the URL selected with the cursor keys, the lighter gray being the one the mouse pointer is over.

The second image shows the colors from FF 88, the URL selected with cursor keys in blue, and a dark gray for the one the mouse pointer is over.

Any help in modifying these colors, and the radius of the selection is greatly appreciated!

Asked by Slouch 38 imizuzu edlule

How can I make different profiles appear in Sync as different entities?

Hi folks, I've searched, but I haven't found anything to help with this particular situation ... I love Firefox/Mozilla Sync and I use it a lot, but I've recently had a… (funda kabanzi)

Hi folks,

I've searched, but I haven't found anything to help with this particular situation ...

I love Firefox/Mozilla Sync and I use it a lot, but I've recently had a desire/need to set up a scenario that some may think perculiar - let me set the scene ...

  • Work PC running Firefox - 1 profile
  • Work VDI running Firefox - 1 profile
  • Work laptop running Firefox - 2 profiles (work & personal)

Mainly for the sake of sending tabs to the appropriate Firefox profile on the laptop, I want/need to be able to config things in Sync to treat those 2 profiles as being different entities. Currently, it appears that all profiles on a device (or within the same user profile on a Windows computer) are treated as the same entity by Sync.

Any ideas on how to achieve what if trying to do? Is it possible with Firefox/Mozilla Sync?

Thanks for your time.

BTW., for clarity, if it matters, the devices listed above are all Windows. FWIW., I also use FF on Android and Linux ... and MacOS.

Asked by Graeme 20 imizuzu edlule

Lost all tabs from previous session and standard fixes don't work

My Firefox settings are configured to "Open previous windows and tabs" on Startup. This worked fine until this morning, when I lost all of the tabs in my session, includi… (funda kabanzi)

My Firefox settings are configured to "Open previous windows and tabs" on Startup. This worked fine until this morning, when I lost all of the tabs in my session, including the pinned ones. The last time I closed Firefox, there was only one window open.

I have already tried these ideas to restore the tabs:

  • CTRL+SHIFT+T: Does nothing
  • CTRL+SHIFT+N: Does nothing
  • Three bar menu -> History -> Recently closed tabs: The list is empty
  • Three bar menu -> History -> Recently closed windows: The option is greyed out
  • Three bar menu -> History -> Restore previous session: The option does not exist in the menu
  • Open user profile folder and open sessionstore-backups folder: There are three files named "previous.jsonlz4", "recovery.baklz4" and "recovery.baklz4". They are each 2KB and contain only an empty tab with the URL "about:home". There are three additional files starting with "upgrade" but they are from too long ago, so they don't contain the tabs I require.

The contents of these tabs are vitally important for my work, so this is causing me significant stress. If anyone can suggest ways to recover my previous tab beyond the documented fixes, I would greatly appreciate it. Thank you so much to anyone who can help!

Asked by king__lego 5 ezinsukwini ezidlule

Last reply by king__lego 28 imizuzu edlule

The "Triage Manager" for Mozilla Refuses to assign anyone to a seven year old open problem

I need to go over the head of the Mozilla Triage manager who has left https://bugzilla.mozilla.org/show_bug.cgi?id=1406865 open without a resolution for **seven years**. … (funda kabanzi)

I need to go over the head of the Mozilla Triage manager who has left https://bugzilla.mozilla.org/show_bug.cgi?id=1406865 open without a resolution for **seven years**. How do I do that? This is a bug reported in Firefox 57 and **still** not fixed in Firefox 125. I cannot find any support category anywhere in the Mozilla website that covers appealing a decision by one of their employees. The last comment from this uncooperative indivisual is "But given we support it on macOS and Windows yeah, it seems not very objectionable." Who is this **clerk** to override the fact that a number of customers very much find this "objectionable". I cannot find anything on https://www.mozilla.org/en-US/contact/ that addresses this issue. I cannot find even a surface mail address for Mozilla. For example my complaint has nothing to do with any of the following:

   I’m having problems with using Firefox
   I want to donate to Mozilla
   I have questions about using Mozilla’s trademarks
   I’d like to report misuse of a Mozilla trademark
   I want to hold an event in a Mozilla space
   I want Mozilla to sponsor my event
   I’d like permission to use a Mozilla logo
   I’m interested in Pocket’s sponsored content on Firefox
   I’m a member of the Press and have a question for Mozilla

Yes I am having a problem with Firefox, but the clerk responsible has, through sitting on this issue for **seven years**, basically told the entire community that he doesn't give a reservoir.

In particular I feel this unacceptable behaviour should be brought to the attention of senior management, but there are no contacts for anybody in senior management.

Asked by jamescobban 3 amahora adlule

Last reply by jamescobban 1 ihora elidlule

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… (funda kabanzi)

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 amahora adlule

Last reply by Agent virtuel 1 ihora elidlule

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="stroke… (funda kabanzi)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Asked by jamescobban 3 emasontweni adlule

Last reply by cor-el 2 amahora adlule

keep getting kicked back to the login credentials page

Firefox can't seem to hold on to, say, a banking website or web page when I navigate away to another app, such as to answer the phone! I'll be on a banking website, and … (funda kabanzi)

Firefox can't seem to hold on to, say, a banking website or web page when I navigate away to another app, such as to answer the phone!

I'll be on a banking website, and when I get back to Firefox from the call 1 minute later, it will greet me with the login credentials page.

If I'm trying to login, and I'm on the 2fa page, and I answer the phone call to get the code, when I get back to Firefox, I'm no longer on the 2fa page, I'm back on the login credentials page.

If I'm trying to log in, and I'm on the 2fa page, and I navigate to the email app to get the code, when I get back to firefox, I'm no longer on the 2fa page, I'm back on the login credentials page.

The situation forces me to use text messaging for 2fa when using Firefox.

I tried recreating the situation in the Chrome browser, and it doesn't seem to suffer from this problem. I navigate away to the email app, come back to Chrome, and I'm still on the 2fa page.

The situation exists for most banking sites, but is not exclusive to only banking sites, as it occurs on many other types of websites, as well, requiring 2fa logins.

Is there some setting in Firefox that I'm overlooking that causes these websites to default back to their login credentials pages just because I went to another app on the phone for a second?

Asked by steveaaayyy 3 amahora adlule

  • Kusonjululiwe

Customize Toolbar page does not appear.

When I try to customize the toolbar in Firefox 115.10, the browser tries to change the page to the customize toolbar / overflow toolbar page. However the page flashes o… (funda kabanzi)

When I try to customize the toolbar in Firefox 115.10, the browser tries to change the page to the customize toolbar / overflow toolbar page. However the page flashes on and then reverts to the normal browser page. The page showing customize toolbar/ overflow toolbar, is transient and does not last. So I can't even customize the order of the buttons on my toolbar. This wasn't a problem a few days ago before the switch to this latest version. In particular I am trying to change the position of the "home" button to the left side of the address box. I just can't bring up the customize toolbar page. I'm not talking about the position of the add-on or extension buttons...just the home button. Hope this is clear. By the way, I've even tried this in safe mode to no avail.

Asked by paulgxi 8 amahora adlule

Answered by paulgxi 4 amahora adlule

Transfer Firefox from Dell Desktop to new HP Laptop?

I am replacing a ten yr. old Dell Desktop with a new HP Laptop. Can you please let me know how to get the new laptop working with my existing Firefox (v125.0.3) with curr… (funda kabanzi)

I am replacing a ten yr. old Dell Desktop with a new HP Laptop. Can you please let me know how to get the new laptop working with my existing Firefox (v125.0.3) with current add-ons, extensions and settings? Thank you for your time !! Rick Perry

Asked by Richard Perry 9 amahora adlule

Last reply by jonzn4SUSE 5 amahora adlule

Firefox plays no audio

I can hear NO AUDIO on ANY webpage, when in Firefox. I have gone through all the suggestions on this page: [https://support.mozilla.org/en-US/kb/what-to-do-if-firefox-w… (funda kabanzi)

I can hear NO AUDIO on ANY webpage, when in Firefox. I have gone through all the suggestions on this page: [https://support.mozilla.org/en-US/kb/what-to-do-if-firefox-wont-play-any-...] but still have the problem.

Asked by radar 1 inyanga edlule

Last reply by jonzn4SUSE 5 amahora adlule

Startpage Search Engine

This problem exists ONLY on Firefox. I vary search engines, from DuckDuckGo to Presearch and Startpage depending on the search results I get. For no apparent reason I wi… (funda kabanzi)

This problem exists ONLY on Firefox. I vary search engines, from DuckDuckGo to Presearch and Startpage depending on the search results I get.

For no apparent reason I will get a "suspended connection" message on Startpage while using the Firefox browser. I have included both the link and a screenshot of the problematic page. The page will open perfectly several times, and then suddenly, in the same session, if I open a new Startpage tab, this message will appear. While the suspended connection message is visible in Firefox / Startpage, I will try Startpage in Edge, Opera, Chrome and Midori, and they all open to the Starpage beautifully.

I am using the Firefox 125.0.3 browser, I have cleared caches and cookies, and run full malware scans, with zero negative results, and yet this problem persists. It is sporadic, and does not occur on a predictable basis. It occurs whether the Mozilla VPN is on or not, and switching from on to off or off to on changes nothing, even after refreshing the page.

I am assuming that this is a Firefox issue, as the problem does not occur on other browsers

I can easily switch browsers and / or search engines, but Firefox in conjuction with Startpage is my preferred combo. I just find it frustrating in that I cannot fix it myself.

So....Ehhhh...what's up doc?

https://www.startpage.com/sp/captcha-block#?bc=US&bi=QuadraNet&be=a2667ecaaf93ae9c091acfff4cebeacc&bds_t=1715638671T77bc1f599823650a2bba749db91bb9c806807a1edc0a34414bf50516dbe0e125&bds_s=dd88ea12048c4efdb6fb4d366c52ae8f&lui=english&cat=web&language=english&t=night&cmd=gen_page

Asked by EmJay Dubbya 8 amahora adlule

Last reply by EmJay Dubbya 5 amahora adlule

  • Kusonjululiwe

When opening a new tab, why can't I automatically search?

When I open a new tab, I can't automatically start searching anymore. Here's a video: https://www.loom.com/share/ebcc8685187a4e2284cf40b75f7e134e?sid=9b0a3db3-fcac-4bae… (funda kabanzi)

When I open a new tab, I can't automatically start searching anymore.

Here's a video: https://www.loom.com/share/ebcc8685187a4e2284cf40b75f7e134e?sid=9b0a3db3-fcac-4bae-9ff9-cdbe2b8b955b

Now, I have to click into the search bar to type. That's annoying.

Anyone know how to fix this?

Asked by Kevin George 17 amahora adlule

Answered by jscher2000 - Support Volunteer 13 amahora adlule

  • Kusonjululiwe

Missing Window?

Hey there, I had two windows in firefox open, one of which had a lot of tabs. I was using firefox on my surface pro, and then got up to get a snack. I came back, and the … (funda kabanzi)

Hey there, I had two windows in firefox open, one of which had a lot of tabs. I was using firefox on my surface pro, and then got up to get a snack. I came back, and the window, which I had been using for some time, was gone. The other window was still open, and firefox had not been closed. I thought I would just open it up by restoring recently closed window, but it was gone. I routinely clear my history, but even tabs that I just had open 5 minutes ago are missing from my history, like I never opened them in the first place. What is going on?

Asked by Carina Elliott 7 amahora adlule

Answered by jscher2000 - Support Volunteer 6 amahora adlule

sign-in to KP.org

I try to sign-in to my KP.org account and I get a white page with the message (Firefox has detected that the server is redirecting the request for this address in a way t… (funda kabanzi)

I try to sign-in to my KP.org account and I get a white page with the message (Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies.) I called KP and they said there was nothing wrong with their site. I added the URL to the cookies exception list with no result. I tried to paste the exact URL of the sign-in page into my bit-warden and it said it exceeded the 1000 character limit. I can sign-in on Chrome, but I prefer to use Firefox. any ideas?

Asked by awc_pdx 6 amahora adlule

Last reply by jscher2000 - Support Volunteer 6 amahora adlule

Create playlist for use with VLC

I have a number of music clips I want to put in one or more playlists to use with VLC Media Player. How do I create such a playlist? (If I'm asking in the wrong place, I … (funda kabanzi)

I have a number of music clips I want to put in one or more playlists to use with VLC Media Player. How do I create such a playlist? (If I'm asking in the wrong place, I apologize.)

Asked by crogerblair1 17 amahora adlule

Last reply by Agent virtuel 12 amahora adlule

Accidentally disabled pop ups on site

I accidentally ticked the "don't allow [site] to show new windows" (I'm browsing in Spanish, forgive me if this isn't how it's written) box and now one of the functions o… (funda kabanzi)

I accidentally ticked the "don't allow [site] to show new windows" (I'm browsing in Spanish, forgive me if this isn't how it's written) box and now one of the functions of the site stopped working because it requires the user to confirm their decision via the pop up window. I'd like to know how to revert this. I've given the site special permissions for pop ups and it hasn't worked.

Asked by Hospitalier 7 amahora adlule

Last reply by jscher2000 - Support Volunteer 6 amahora adlule

Restore tabs after factory reset

Help please. I had to factory reset my laptop (or rather, an IT support person took over my machine and reset it before I could back up things properly!). I was not able… (funda kabanzi)

Help please.

I had to factory reset my laptop (or rather, an IT support person took over my machine and reset it before I could back up things properly!). I was not able to restore my previously opened tabs (there were a lot, like >100). It appears that all of those tabs still are showing on my mobile version of firefox as 'synced tabs'. Is there a way to pull that sync information from my phone to my laptop? If I press on "synchronise tabs" will the phone receive my laptops current tabs (not what i want), or will it update the laptop (what i do want)?

Thank you.

125.0.3 (64-bit)

Asked by KNAPPO 7 amahora adlule

Last reply by jscher2000 - Support Volunteer 7 amahora adlule

Would it be too much to ask for a simple session restore feature that is indexed to history?

I am always having this problem of losing all of my open tabs. I am sure I am not the only person who has many parallel task running. Then, for whatever reason, the brow… (funda kabanzi)

I am always having this problem of losing all of my open tabs. I am sure I am not the only person who has many parallel task running. Then, for whatever reason, the browser crashes, and in opening the browser, the single "Restore Previous Session" button is the only lifeline back to all of that work.

Would it be too much to ask for a simple session restore feature that is indexed to history? So we could go back to yesterday's session, or last week's, and not lose so much.

This loss of ongoing work happens to me 2-3 times a year, and amounts to untold losses of time, effort, and money.

Asked by mstocker 11 amahora adlule

Last reply by cor-el 7 amahora adlule