Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Kusonjululiwe

Bookmark Problems

I run the current Firefox version under Windows 11 Pro on a Dell Inspiron 15 3530 laptop, Lately, I've been having problems with my bookmarks: First, I found that I h… (funda kabanzi)

I run the current Firefox version under Windows 11 Pro on a Dell Inspiron 15 3530 laptop, Lately, I've been having problems with my bookmarks:

  • First, I found that I had somehow lost a large number of bookmark tags; it took me several days to restore them,
  • Next, I found that I had lost a bunch of bookmark subfolders; the bookmarks (for the most part) are still listed under their tags.
  • When I try searching for tags in Bookmarks Manager, the search yield no results
  • When I try to restore my bookmarks from a previous date, I get an "unable to process file" message.
  • When I try to open the profile folder through the debugging information page, I get a "file not found" message. After some searching, I found the profile folder not at "C:\Users\croge\AppData\Roaming\Mozilla\Firefox\Profiles\7csymh5k.default-release", but at "C:\Users\croge\AppData\Local\Packages\Mozilla.Firefox_n80bbvh6b1yt2\LocalCache\Roaming\Mozilla\Firefox\Profiles", Something seems to have gone haywire--did I miss something, or is there an error somewhere?

Asked by crogerblair1 2 izinyanga ezidlule

Answered by crogerblair1 2 izinyanga ezidlule

  • Kusonjululiwe

Bookmarks

All of a sudden I can no longer add bookmarks to my Firefox desktop. At this point I can not even access the "Bookmark current tab." Are there settings that control the B… (funda kabanzi)

All of a sudden I can no longer add bookmarks to my Firefox desktop. At this point I can not even access the "Bookmark current tab." Are there settings that control the Bookmarks section. Thank you

Asked by Ed V 1 inyanga edlule

Answered by Denys 1 inyanga edlule

  • Kusonjululiwe

security

I signed into one of my financial accounts and it said the sign in was with firefox windows 10. I have windows 11 on my computer. Is this a security issue? Fire fox sa… (funda kabanzi)

I signed into one of my financial accounts and it said the sign in was with firefox windows 10. I have windows 11 on my computer. Is this a security issue? Fire fox says i am on the latest version

Asked by patrank8240 2 izinyanga ezidlule

Answered by James 2 izinyanga ezidlule

  • Kusonjululiwe

Firefox starts without application title bar

The lack of a title bar makes it impossible, for example, to close the application by pressing the "X" icon in the upper right corner. The title bar does not appear when … (funda kabanzi)

The lack of a title bar makes it impossible, for example, to close the application by pressing the "X" icon in the upper right corner. The title bar does not appear when the application starts, but does appear when the application window is minimized and then maximized.

Asked by lplonka 2 izinyanga ezidlule

Answered by Ed 2 izinyanga ezidlule

  • Kusonjululiwe

Microphone in the AI Sidebar

I can't seem to locate how to activate the microphone in the AI sidebar. I have Gemini selected, and when I hit the microphone to dictate I get the following message.. Un… (funda kabanzi)

I can't seem to locate how to activate the microphone in the AI sidebar. I have Gemini selected, and when I hit the microphone to dictate I get the following message.. Unable to access the microphone. Please check settings.

I looked through Firefox settings and my laptop's but I don't see where it is turned off or asking for activation.'

Tom Z.

Asked by Tom Z 2 izinyanga ezidlule

Answered by TyDraniu 2 izinyanga ezidlule

  • Kusonjululiwe

server not found.

Hmm. We’re having trouble finding that site. We can’t connect to the server at fzttlwrt.r.us-east-1.awstrack.me. If you entered the right address, you can: Try agai… (funda kabanzi)

Hmm. We’re having trouble finding that site.

We can’t connect to the server at fzttlwrt.r.us-east-1.awstrack.me.

If you entered the right address, you can:

   Try again later
   Check your network connection
   Check that Firefox has permission to access the web (you might be connected but behind a firewall)

Asked by JoAnn Wilson 1 inyanga edlule

Answered by Denys 1 inyanga edlule

  • Kusonjululiwe

Hiding "The security sandbox is disabled" warning

I've purposefully used the environment variable to disable the security sandbox. How can I acknowledge and hide the persistent warning? Is there any about:config value f… (funda kabanzi)

I've purposefully used the environment variable to disable the security sandbox.

How can I acknowledge and hide the persistent warning? Is there any about:config value for it?

Thank you!

Asked by Maximiliano 2 izinyanga ezidlule

Answered by TyDraniu 2 izinyanga ezidlule

  • Ikhiyiwe

BOOKMARKS AND FAVOURITES

There was a issue with my computer due to which I had to reset the unit and once the reset was completed I'm unable to recover my data as its asking for 32 account recove… (funda kabanzi)

There was a issue with my computer due to which I had to reset the unit and once the reset was completed I'm unable to recover my data as its asking for 32 account recovery key, I'm unable to find that key anywhere and need help where can i find the key as there are important bookmarks which I need back.

Asked by SuMo Bot 1 inyanga edlule

Last reply by Paul 1 inyanga edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Get multirow bookmarks toolbar working again with Firefox 109 and Windows 11

Hi @all, I reinstalled my computer from scratch with Windows 11, before this reinstallation I had Windows 10. Now I noticed that with the newest Firefox version 109 (tha… (funda kabanzi)

Hi @all,

I reinstalled my computer from scratch with Windows 11, before this reinstallation I had Windows 10. Now I noticed that with the newest Firefox version 109 (that I also had before with Windows 10) and Windows 11 my multirow bookmarks toolbar doesn´t work anymore. Before the reinstallation it worked with the following code:


/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/multi-row_bookmarks.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */

/* Makes bookmarks toolbar span multiple rows */

#PersonalToolbar{
  --multirow-bmb-n-rows: 3; /* Control how many rows are shown before scrolling */
  --multirow-bmb-row-margin: 2px; /* Control how much spacing is between rows */
  max-height: none !important;
}

#PlacesToolbar > hbox{ 
  display: block;
  width: 100vw;
}

#PlacesToolbarItems{
  display: flex;
  flex-wrap: wrap;
  /* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
  max-height: calc(var(--multirow-bmb-n-rows) * (5px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,2px))))) !important;
  overflow-y:auto;
  scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ;
  scrollbar-width: thin;
}

/* Hide the all-bookmarks button */
#PlacesChevron{ display: none }

/* Add some spacing between rows */
#PlacesToolbarItems > .bookmark-item{ margin: var(--multirow-bmb-row-margin) 3px !important;  }


I already tried some other codes that I found in the internet but none of them worked. I have this code in the file userChrome.css, this file is in a chrome folder and this folder is in my profile folder. Can anybody tell me what I have to do to make the multirow bookmarks toolbar working again?

Best regards heusmich

Asked by heusmich 3 iminyaka edlule

Answered by heusmich 3 iminyaka edlule

  • Ikhiyiwe

Bing homepage on Firefox

I have Bing as my homepage, but on one computer I have a very annoying problem. I click on the settings to turn off 'Show news and interests' and 'Show trending on Bing',… (funda kabanzi)

I have Bing as my homepage, but on one computer I have a very annoying problem. I click on the settings to turn off 'Show news and interests' and 'Show trending on Bing', but the next time I come back to the homepage these settings have turned themselves back on. What do I have to do to retain these settings?

Asked by TV John 2 izinyanga ezidlule

Last reply by Denys 2 izinyanga ezidlule

  • Kusonjululiwe

A lot of text that wasn't underlined is now underlined

I don't remember when it started but text that wasn't underlined before such as: Names of shortcuts in new tab view Titles of YouTube videos on home page, and recommended… (funda kabanzi)

I don't remember when it started but text that wasn't underlined before such as: Names of shortcuts in new tab view Titles of YouTube videos on home page, and recommended while watching a video (not on the video itself) Reddit titles and usernames (old UI)

I have checked settings as best as I can and tried disabling all extensions but still have the issue.

Asked by nicholas.yonan2435 2 izinyanga ezidlule

Answered by nicholas.yonan2435 2 izinyanga ezidlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Change Mail

Hello, I have a firefox Account "accountA" which has the primary eMail-Address "mailA". I had an other Account "accountB" with primary eMail-Address "mailB" and secondar… (funda kabanzi)

Hello,

I have a firefox Account "accountA" which has the primary eMail-Address "mailA". I had an other Account "accountB" with primary eMail-Address "mailB" and secondary eMail-Address "mailC". Sadly I lost access to "accountB" and it's primary Mail-Address "mailB" (which is ok) but want to change the Mail from "accountA" to "mailC".

However, this is not possible since "mailC" is locked to "accountB" which I can no longer access (since I need the primary Mail Address. This meens I can never again use "mailC" for my Firefox account, which is now my primary Mail-Address. Is there should be a way to disconnect a Mail-Address from an account, if one has ownership of this Mail-Address?

Sincerly Robin

Asked by Robin 3 iminyaka edlule

Answered by Robin 3 iminyaka edlule

  • Kusonjululiwe

A specific website will not load, Console identifies a Cross Origin Request Blocked error

A website that I have used for years to track my wine cellar invenory has ceased functioning for me. The Web Designer tells me that the problem is a network issue and not… (funda kabanzi)

A website that I have used for years to track my wine cellar invenory has ceased functioning for me. The Web Designer tells me that the problem is a network issue and not his problem. I get no solutions from my ISP.

When I attempt to load the page and look at the Console I get the following error message in response to several GET requests:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.ct-static.com/dist/js/ct.min.1530c2da96.js.

A web search tells me that this policy is a browser safety net. Any suggestions for troubleshooting?

Asked by te_simpson 1 inyanga edlule

Answered by te_simpson 1 inyanga edlule