Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Okugcinwe kunqolobane

history deleted recover requsted this date 18\06\2024 this account firefox

I am writing to request assistance with recovering my deleted browsing history for my Firefox account. On June 18, 2024, I accidentally deleted my browsing history and I … (funda kabanzi)

I am writing to request assistance with recovering my deleted browsing history for my Firefox account. On June 18, 2024, I accidentally deleted my browsing history and I am hoping there is a way to restore it.

Asked by mktsura 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

Problem with sign in page on Amazon

Whenever I go in to sign into Amazon Prime, using Firefox, the sign in page automatically shows my E mail address, my phone no. and my password. I do not have Amazon as … (funda kabanzi)

Whenever I go in to sign into Amazon Prime, using Firefox, the sign in page automatically shows my E mail address, my phone no. and my password. I do not have Amazon as a saved log in. I contacted Amazon and they had me log into Amazon on a different browser and this information does not show up on Microsoft Edge, so Amazon said it has something to do with Firefox. Please let me know how I can eliminate this information from showing up automatically on Firefox

Asked by snoopmojo 1 unyaka odlule

Last reply by snoopmojo 1 unyaka odlule

  • Okugcinwe kunqolobane

My primary password will not work on the app on my iphone

I have all my passwords stored on Firefox on my macbook pro. When I follow the instructions to sync my passwords on the Firefox app on my phone, it keeps rejecting my pri… (funda kabanzi)

I have all my passwords stored on Firefox on my macbook pro. When I follow the instructions to sync my passwords on the Firefox app on my phone, it keeps rejecting my primary password, saying it is incorrect. I have deleted the app and re-installed it on my phone, but it still does not work. Why will my account not open on my iphone app? Thank you!

Asked by cherylmarion 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

clearing cache and access to inner layers of Cabelas

I have 228 kb of cached web content that will not clear. I am also unable to get past the initial pages of cabelas.com. I can get to cabelas, then click on camping, then … (funda kabanzi)

I have 228 kb of cached web content that will not clear. I am also unable to get past the initial pages of cabelas.com. I can get to cabelas, then click on camping, then click on camp chairs, and that is where it stops. I tried it using microsoft edge and it works fine, so my desktop pc isn't the problem. Sportsmans Warehouse has a similar web site layout and it works fine, so the 228 kb is strictly related to cabelas. The 228 kb of cached web content that won't clear and the cabelas problems started together.

No matter how many times I clear the cookies, data, web cache, that 228 kb stays right there.

If I can find some way to clear that 228 kb, I bet cabelas will again work.

Thanks in advance!

Asked by S+x2Yn8 1 unyaka odlule

Last reply by jonzn4SUSE 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Firefox URL address bar suggestions window shifted upwards, covering the URL bar and bookmarks

Hello, Since a couple of weeks I'm facing a strange issue on my Firefox installed on my desktop (arch linux) where the suggestions window that appears when clicking the U… (funda kabanzi)

Hello, Since a couple of weeks I'm facing a strange issue on my Firefox installed on my desktop (arch linux) where the suggestions window that appears when clicking the URL address bar, is shifted upwards and covers the address bar itself and the majority of the bookmarks. Has anyone experienced a similar issue and is able to point me towards some troubleshooting steps? Thanks!

Asked by Bryan Joshua Pedini 1 unyaka odlule

Answered by TyDraniu 1 unyaka odlule

  • Okugcinwe kunqolobane

Toggling visibility of the URL bar and tabs via the bookmarks toolbar visibility setting [SOLVED]

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others. navigator-toolbox:has(#PersonalToo… (funda kabanzi)

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others.

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) {
 visibility: collapse;

}


+++

I was looking for a way to hide the nav bar and ran across this older forum topic (https://support.mozilla.org/en-US/questions/1288181).

The solution shown here seems to be non-functional these days (early 2024), but it gets us in the right direction, so below is the code for us to look at.

  1. main-window[chromehidden*="toolbar"] #nav-bar {
 visibility: collapse;

}

This is CSS, meant to be copied into a text document, itself placed in a folder called "chrome" that you'll need to create in your browser's active profile folder. Per step 6 in the instructions (https://www.userchrome.org/how-create-userchrome-css.html) linked by @jscher2000 in the above-linked forum topic, you'll also need to set toolkit.legacyUserProfileCustomizations.stylesheets to "true" in about:config. If you don't know what about:config is, this is a good example to get started, but I'm not going to explain it here.

This CSS code selects the object with ID #main-window, with an HTML attribute "chromehidden" equal to "toolbar", and sets its CSS property "visibility" to "collapse". Apparently Mozila have changed the way they implement toolbar hiding, as this no longer works — this chromehidden attribute is nowhere to be found in the HTML that drives the Firefox interface, not sure if that's the place to look for it, but I think so. Anyway, we need to dig around in this interface HTML ourselves to see what changes when hiding the bookmarks toolbar, so we can adapt a new method to what's going on in the browser now.

To do so, we open a window within a window (chrome://browser/content/browser.xhtml) and run the inspector via Web Developer Tools. Comparing the HTML we see here with the bookmarks toolbar in each state (I used BBEdit to compare the texts), we see that the object with ID #PersonalToolbar experiences a change in its "collapsed" attribute when we hide/show the bookmarks toolbar. So in our CSS code, we shift our strategy to update the "collapse" CSS property for #navigator-toolbox whenever it contains a #PersonalToolbar object with its own "collapsed" attribute set to "true", which occurs whenever we hide the bookmarks toolbar. Somewhat surprisingly, this approach of updating the CSS property seems to auto-reset on its own when the "collapsed" attribute is set back to "false", which occurs when we show the bookmarks toolbar again. In other words, it simply toggles with the visibility setting of the bookmarks toolbar, and we don't have to write any further code.

If you're interested in hiding some other UI element when hiding the bookmarks toolbar, you can modify this code to do stuff like that (but to go beyond the below examples you'll need to suss out the object IDs, CSS properties, and HTML attributes — and maybe more, depending on what you're trying to do — on your own).

But for convenience, here's an example that hides just the tabs:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #titlebar {
 visibility: collapse;

}


Here's one that hides just the URL bar:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #nav-bar {
 visibility: collapse;

}


Since those are the only other two things in the #navigator-toolbox to be hidden, I suppose that means we now have all options on the table (at least the way I have the browser set up). Enjoy!

Asked by firefox.anon8f8 1 unyaka odlule

Last reply by firefox.anon8f8 1 unyaka odlule

  • Ikhiyiwe
  • Okugcinwe kunqolobane

Firefox Slow to Load Youtube with Ublock Origin

As the title says, it is very slow with Ublock Origin. I have refreshed Firefox and without Ublock it obviously works but I would like to keep the extension because it is… (funda kabanzi)

As the title says, it is very slow with Ublock Origin. I have refreshed Firefox and without Ublock it obviously works but I would like to keep the extension because it is the only one that works with Youtube Ads right now.

Asked by SuMo Bot 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

Remove search URL from tool bar

I am using latest of Firefox and DuckDuckGo. When I type something in the main search bar (in the middle of screen) the text moves to the search field in the toolbar area… (funda kabanzi)

I am using latest of Firefox and DuckDuckGo. When I type something in the main search bar (in the middle of screen) the text moves to the search field in the toolbar area. I find this annoying. I want to text to remain in the main search bar (middle of screen). Any solution?

Regards Francesco Cembrola

Asked by Francesco3000 1 unyaka odlule

Last reply by Agent virtuel 1 unyaka odlule

  • Okugcinwe kunqolobane

stubborn cached web content

I have 228 kb of cached web content that refuses to clear. Say there is 1.5 mb cached, and when I clear, the 228 kb is still there. It interferes with a web site I visit.… (funda kabanzi)

I have 228 kb of cached web content that refuses to clear. Say there is 1.5 mb cached, and when I clear, the 228 kb is still there. It interferes with a web site I visit. Please help me get rid of this! Thanks in advance.

Asked by S+x2Yn8 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Random unistall/reinstall lost all my book marks

Hey y'all, I just closed Firefox and tried to open in up again a few minutes later. The icon in my taskbar threw an error saying it couldn't find the executable. I typed … (funda kabanzi)

Hey y'all, I just closed Firefox and tried to open in up again a few minutes later. The icon in my taskbar threw an error saying it couldn't find the executable. I typed Firefox into the run dialog and FF came up but has no icons on the home screen, zeroed out my bookmarks bar below the URL field and deleted all my bookmarks (100s).

I went into the User/../../Mozilla folder system and found a folder called bookmarksBackup or something similar. It was completely empty.

Any chance these were saved somewhere else as well?

126.0.1 (64-bit) on Windows

Thanks

Asked by bsbaixo 1 unyaka odlule

Answered by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

Tahoo Mail attachments

I was able to open all attachment that came with my Yahoo mail. Since this morning I can not open any attachments-word, excel or PDF What happened? How do I go back to be… (funda kabanzi)

I was able to open all attachment that came with my Yahoo mail. Since this morning I can not open any attachments-word, excel or PDF What happened? How do I go back to be able to open all attachments

Asked by upensaraiya 1 unyaka odlule

Last reply by jonzn4SUSE 1 unyaka odlule

  • Okugcinwe kunqolobane

stop video autoplay

the only autoplay setting i can find is under privacy and security. the page shows DEFAULT FOR ALL WEBSITES: Block Audio and Video, but videos still open and play. the pa… (funda kabanzi)

the only autoplay setting i can find is under privacy and security. the page shows DEFAULT FOR ALL WEBSITES: Block Audio and Video, but videos still open and play. the page does not retain the change when i select the button REMOVE ALL WEBSITES. this problem has not been happening for years. it may have begun about six months ago. thank you for your time

Asked by ekworks 1 unyaka odlule

Last reply by ekworks 1 unyaka odlule

  • Okugcinwe kunqolobane

Restart to Keep Using Firefox

My Firefox is up to date but this will not stop popping up! I have repaired, reinstalled. Still getting the below. about:restartrequired Restart to Keep Using Firefox A… (funda kabanzi)

My Firefox is up to date but this will not stop popping up! I have repaired, reinstalled. Still getting the below.


about:restartrequired Restart to Keep Using Firefox An update to Firefox started in the background. You’ll need to restart to finish the update. Your windows and tabs will be quickly restored, but private ones will not.

Asked by mcabeeengineering 1 unyaka odlule

Last reply by mcabeeengineering 1 unyaka odlule

  • Okugcinwe kunqolobane

Primary Email Account Inaccessible

A while ago I stupidly deleted my main email for my Firefox account (I didn't realize at the time that they were connected). It was a protonmail account so there are 0 me… (funda kabanzi)

A while ago I stupidly deleted my main email for my Firefox account (I didn't realize at the time that they were connected). It was a protonmail account so there are 0 methods of account recovery. I want to switch the primary email to a non-deleted email, however I obviously cant because I cant get the verification code that is sent to the primary in order to allow that to happen. Is there something to do about this or am I screwed?

Asked by jhopeyoudie 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

bookmarks and passwords

Windows operating system crashed and I had to reload it but before I did I coped all my files to an external drive Now Im back up running but need my bookmarks and saved … (funda kabanzi)

Windows operating system crashed and I had to reload it but before I did I coped all my files to an external drive Now Im back up running but need my bookmarks and saved passwords from my old firefox file What folderdo I need to copy from my backup to get my data back Note I can not run the old firefox progrea,

Asked by Bobs 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

Firefox on macOS hangs for a few seconds when a video stream with audio starts playing, when using bluetooth

I've been dealing with this issue for a long time now, without finding any solution On macOS, whenever I am using Bluetooth headphones (Sony XM4, Airpods Pro), videos wil… (funda kabanzi)

I've been dealing with this issue for a long time now, without finding any solution

On macOS, whenever I am using Bluetooth headphones (Sony XM4, Airpods Pro), videos will hang for a few seconds just as the video is starting. This happens again if I pause/unpause or if I seek forward/backward on a video. The video "spinning animation" will appear and it will take 2-3 seconds for the video to start. This happens immediately, even if I click pause/start fast (ie: this is not after some delay necessarily). Also, if I mute audio on the video, the issue does not manifest itself.

During the waiting, Firefox itself seem to be hanging: for instance if I click on an extension icon in the toolbar, nothing will happen until the video finally start playing and then the extension menu will open up

When using Google Meet or Zoom for instance, I sometimes have to wait up to 10 seconds or so before Bluetooth Audio/Microphone starts after I've joined a meeting.

The issue is not specific to these platforms: I experience the same issue on other platforms such as Facebook, dailymotion, vimeo, zoom. On Facebook, since videos start muted, I can see the videos start playing right away, and then if I unmute sound the video stops, and start again with sound after 3 seconds or so

The issue does NOT manifest itself when playing an audio-only stream: ex Soundcloud or local radio stations audio stream

Things I've tried and didn't help - Troubleshoot mode - Different Firefox profile - Different Firefox install - Restarting my system

This feels like Firefox/macOS is waiting for Bluetooth to activate, or something like that. I have a feeling this only happens for certain types of video/audio codecs but I am not sure how to validate that (ex: no issues on soundcloud, petron audio-only posts).

The problem is entirely non-existent when I'm using sound output that is not Bluetooth.

This does not happen with other browsers otherwise I wouldn't be posting here :)

macOS 14.5, M1 Macbook Pro

Asked by jfchevrette 1 unyaka odlule

Last reply by jfchevrette 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

I am not able to import my bookmarks from HTML though I have exported them in a HTML file

Hey, I have previously exported my bookmarks in an HTML file. When reinstalling Firefox, I tried to import them using the HTML backup file. It says that 309 bookmarks hav… (funda kabanzi)

Hey,

I have previously exported my bookmarks in an HTML file. When reinstalling Firefox, I tried to import them using the HTML backup file. It says that 309 bookmarks have been found, but nothing changes on the bookmarks bar, still showing the "Import bookmarks" bookmark. These are very important bookmarks I would really like to get back, can you help me please ?

Asked by Daphné Lambert 1 unyaka odlule

Answered by Daphné Lambert 1 unyaka odlule