Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo

Can't save or add bookmarks

Currently unable to save, edit or add bookmarks. I have updated Firefox, refreshed Firefox, gone through Troubleshoot mode, cleared the startup cache, and deleted the "x… (funda kabanzi)

Currently unable to save, edit or add bookmarks.

I have updated Firefox, refreshed Firefox, gone through Troubleshoot mode, cleared the startup cache, and deleted the "xulstore.json" in my profile folder.

Pls help this is driving me nuts + making me want to switch browsers. Thanks : )

Asked by tr 2 amahora adlule

Last reply by jscher2000 - Support Volunteer 1 umzuzu odlule

Remove logins and passwords

I want to delete firefox logins info and to make sure passwords and logins are never stored. I go to passwords, open up menu, and the "remove all passwords" choice is gr… (funda kabanzi)

I want to delete firefox logins info and to make sure passwords and logins are never stored. I go to passwords, open up menu, and the "remove all passwords" choice is greyed out. How can I get that choice it be valid and to impliment that operation?? And to never have these stored??

Asked by MrJaakay 2 amahora adlule

Last reply by jscher2000 - Support Volunteer 30 imizuzu edlule

Add eyedropper tool to toolbar

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality.… (funda kabanzi)

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality. I have power-toys but I hate to see this tool needlessly depreciated. My workflow needs to sample many colors at a time making the menu navigation needless. PLEASE let there be a way to add it to the toolbar, I hope there is. Thanks for your time

Asked by bromraven 59 imizuzu edlule

Last reply by jscher2000 - Support Volunteer 35 imizuzu edlule

Using the --new-tab and --search CLI options together doesn't work properly

When I use the `--search` CLI option, Firefox searches the supplied term in a new window. I want it to open itself in a new tab instead, so I tried out the following com… (funda kabanzi)

When I use the `--search` CLI option, Firefox searches the supplied term in a new window.

I want it to open itself in a new tab instead, so I tried out the following combination of CLI options:

``` $ firefox --new-tab --search "example" ```

Firefox does search for the given term, but it opens itself in a new window instead of a new tab, thus ignoring the `--new-tab` option.

Am I doing something wrong?

Asked by wympo 3 amahora adlule

Last reply by jscher2000 - Support Volunteer 53 imizuzu edlule

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

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

Last reply by jscher2000 - Support Volunteer 1 ihora elidlule

Windows 7 support

Dear Mozilla: It is SAD that the OS I have will no longer be supported due to exploits. Considering the # of exploits, backdoors, poor coding, etc., in the later Window… (funda kabanzi)

Dear Mozilla:

It is SAD that the OS I have will no longer be supported due to exploits.

Considering the # of exploits, backdoors, poor coding, etc., in the later Windows OS versions - 1 would truly think that supporting the older and MUCH more secure Windows OS's would be wise.

Yes, they have "holes", but overall much fewer than current OS's.

Plus, the bad actors are very busy exploiting 10 & 11 and pretty much have ignored the prior versions.

Question... what if a major exploit is found that affects all OS's from 11 down to unsupported?

Will Mozilla make sure to supply a patch to the unsupported due to the danger of the new & serious "hole" found?

I vote... it would be wise to maintain a small contingency of legacy developers to help those who cannot buy new systems or flat out HATE the UI & UX of the 10 & 11.

Makes sense?

Asked by scottie916 5 amahora adlule

Last reply by jscher2000 - Support Volunteer 3 amahora adlule

Doesnt prompt WHERE to save downloads/ Why doesn't AUTO UPDATE work?

I've reported these issues before with no response. I've uninstalled reinstalled cleared cache and cookies searched another forums et cetera. Why must I manually update w… (funda kabanzi)

I've reported these issues before with no response. I've uninstalled reinstalled cleared cache and cookies searched another forums et cetera. Why must I manually update when it's set to auto update? When I set controls to ask where to download items it bypasses that and downloads it as a temp file where I have to cut it out of explorer and paste it where I would like to save it.

Edition Windows 11 Home Version 23H2 Installed on ‎3/‎17/‎2024 OS build 22631.3527 Experience Windows Feature Experience Pack 1000.22700.1003.0

Asked by MILESTWEST 5 amahora adlule

Last reply by jscher2000 - Support Volunteer 5 amahora adlule

cannot ensure I'm getting pop up messages

I would like to be able to make sure if a pop-up window is blocked, that I'm being notified about it, but there are no options in settings. I read through the instruct… (funda kabanzi)

I would like to be able to make sure if a pop-up window is blocked, that I'm being notified about it, but there are no options in settings.

I read through the instructions listed on the help pages and found a message from support from 4 years ago about manually editing the settings, which wasn't helpful.

Are they just on by default now? Or did they get turned off and if so, how do I turn them back on?

(p.s. having something teach you how to do something, this case getting trouble shooting data manually, should open another window, not navigate me away from the page I'm sending this message from)

Asked by DragonAceSg7 1 usuku oludlule

Last reply by cor-el 5 amahora adlule

How do I get curvy tabs?

Hello, I want to get funky looking tabs like this: https://imgur.com/a/Xbc4Kih But I can't figure out how to do it. I've tried searching for a way to do this, but every… (funda kabanzi)

Hello, I want to get funky looking tabs like this:

https://imgur.com/a/Xbc4Kih

But I can't figure out how to do it. I've tried searching for a way to do this, but everything I find is very old and doesn't work. One thing I keep finding is this: https://github.com/wilfredwee/photon-australis

But that doesn't work for me, it just makes the tabs less tall. I've tried switching to nightly and that didn't do anything so I'm pretty lost. I don't know CSS or anything so I cant do it myself.

If anyone knows how to do this then please tell me!! thx!

Asked by ScriptGoober 18 amahora adlule

Last reply by cor-el 5 amahora adlule

Error message that old firefox is running when starting firefox

Starting today (Apr 30), when trying to open firefox the following message appears: "Firefox is running, but not responding. The old Firefox process must be closed to op… (funda kabanzi)

Starting today (Apr 30), when trying to open firefox the following message appears:

"Firefox is running, but not responding. The old Firefox process must be closed to open a new window." My options are to close firefox or cancel.

When selecting close firefox, the message will reappear with the same options. I am unable to run.

Steps I have taken: Uninstall Firefox Download latest Install

Message still appears

Asked by Alvaro Andraca 6 amahora adlule

Last reply by cor-el 6 amahora adlule

language

Firefox on my pc loads Ebay.com with Chinese characters, not English. This ONLY happens on PC (mobile phone is fine, same firefox browser) only with firefox (Duck Duck … (funda kabanzi)

Firefox on my pc loads Ebay.com with Chinese characters, not English.

This ONLY happens on PC (mobile phone is fine, same firefox browser) only with firefox (Duck Duck Go on my pc works fine) and ONLY when opening Ebay.

Problem started 4/29. I have done: computer update/restart, firefox update/restart, clear cache in firefox

Thanks for any help. I also have Ebay looking into this.

Asked by dmp221 7 amahora adlule

Last reply by cor-el 6 amahora adlule

Blank window opens when I start firefox

Every time I open Firefox another blank window opens behind the main Firefox pages . I see it when I close Firefox so have to close that too. There is no URL in the windo… (funda kabanzi)

Every time I open Firefox another blank window opens behind the main Firefox pages . I see it when I close Firefox so have to close that too. There is no URL in the window just a blank page.

Asked by treedum2 1 usuku oludlule

Last reply by cor-el 6 amahora adlule

Firefox Private cannot be opened since the start of 2024

When I open Firefox and want to go to Private. I go to the three lines at the top right of the Firefox page. I go down to Private. Then after selecting it, YET ANOTHER… (funda kabanzi)

When I open Firefox and want to go to Private. I go to the three lines at the top right of the Firefox page. I go down to Private. Then after selecting it, YET ANOTHER REGULAR FIREFOX PAGE OPENS. I NEVER had this problem until the start of 2024.

Please help as I used to have FIREFOX PRIVATE as my go to browser. Now, I use others and they do not work with some pages.

Please help as it is frustrating to keep getting a new Regular page.

Asked by L Wille 22 amahora adlule

Last reply by zeroknight 7 amahora adlule

Issue with Accessing website on Mozilla Firefox

Dear Mozilla Community, I am reaching out to seek assistance regarding an issue I have encountered while trying to access the website https://paydayloanseloanwarehouse.n… (funda kabanzi)

Dear Mozilla Community,

I am reaching out to seek assistance regarding an issue I have encountered while trying to access the website https://paydayloanseloanwarehouse.net/ on Mozilla Firefox. The website does not load, and I am unsure whether the problem is related to browser compatibility, a technical issue, or a possible blocking by the browser.

Has anyone else experienced this issue, or can provide guidance on how to resolve it? I have tried clearing my browser cache and disabling extensions, but the problem persists.

Any help or suggestions on how to access the website smoothly would be greatly appreciated. Thank you in advance for your support.

Asked by Alinet Utmix 8 amahora adlule

Last reply by zeroknight 7 amahora adlule

When i click ctrl only ctrl on any tab its makes it smaller

When i click ctrl only ctrl its maeks tab smaller like ctrl + - but i only press ctrl also when i hold scroll i can smooth surf the tab now it dont work what i have to do… (funda kabanzi)

When i click ctrl only ctrl its maeks tab smaller like ctrl + - but i only press ctrl also when i hold scroll i can smooth surf the tab now it dont work what i have to do?

Asked by harryharry1238 1 usuku oludlule

Last reply by zeroknight 7 amahora adlule

Problems with the browser not accessing the established links after a few minutes.

I am able to start FF with no problem. I open a few tabs and then without warning I can't access any of the sites without closing FF and restarting. Then the whole cycle … (funda kabanzi)

I am able to start FF with no problem. I open a few tabs and then without warning I can't access any of the sites without closing FF and restarting. Then the whole cycle is repeated. I am considering getting rid of FF this started just over a month ago.

Asked by notsofast7 1 usuku oludlule

Last reply by zeroknight 7 amahora adlule

Firefox keeps downgrading?

I'm using Firefox 124.0.2 (64 bit) on Windows, and every few days I get the error about using an older version of Firefox, with Exit or Create New Profile options. I the… (funda kabanzi)

I'm using Firefox 124.0.2 (64 bit) on Windows, and every few days I get the error about using an older version of Firefox, with Exit or Create New Profile options. I then run "firefox -allow-downgrade" from the command prompt and everything works fine... for a few days, when it happens all over again. This only started happening a couple of weeks ago, but it's getting really annoying. How do I stop it (short of using something like Waterfox or Brave).

Asked by peter.dell 1 usuku oludlule

Last reply by zeroknight 7 amahora adlule

Hero Wars "Dominion era"

I have played "Hero Wars,Dominion Era " for years on Fire Fox...They did an "update" last week(Thursday or friday 04/25-26?24)and I haven't been able to log onto the game… (funda kabanzi)

I have played "Hero Wars,Dominion Era " for years on Fire Fox...They did an "update" last week(Thursday or friday 04/25-26?24)and I haven't been able to log onto the game itself since...I can still open the Hero wars home page,I can get into my "discord" chat etc etc etc,but I cannot get into my individual game.(If it helps,my Hero wars game ID # is 10920140)...I had to start playing the game itself on Google Chrome...I am hopeing you can help find a solution as everything I do is from Fire Fox & I really don't like chrome :(...PLEASE Help me resolve this if possible! ( Nexus suggested I use "Incognito" on FireFox ( I remeber that from a few yrs back,but honestly,i haven't used or seen "incognito" since :()

Asked by Wayne Hoiensahl 1 usuku oludlule

Last reply by zeroknight 7 amahora adlule

APK file downloading issue

"I'm encountering difficulties downloading APK files using Firefox. The downloads either fail to initiate or get stuck midway. I've tried various troubleshooting steps wi… (funda kabanzi)

"I'm encountering difficulties downloading APK files using Firefox. The downloads either fail to initiate or get stuck midway. I've tried various troubleshooting steps without success. Seeking advice on resolving this issue promptly."

Asked by Lee Payne 2 ezinsukwini ezidlule

Last reply by zeroknight 8 amahora adlule