顯示下列標籤的問題: 顯示所有問題
  • 已解決

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… (閱讀更多)

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?

crogerblair1 於 2 個月前 詢問

crogerblair1 於 2 個月前 解答

  • 已解決

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… (閱讀更多)

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

Ed V 於 1 個月前 詢問

Denys 於 1 個月前 解答

  • 已解決

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… (閱讀更多)

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

patrank8240 於 2 個月前 詢問

James 於 2 個月前 解答

  • 已解決

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 … (閱讀更多)

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.

lplonka 於 2 個月前 詢問

Ed 於 2 個月前 解答

  • 已解決

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… (閱讀更多)

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.

Tom Z 於 2 個月前 詢問

TyDraniu 於 2 個月前 解答

  • 已解決

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… (閱讀更多)

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)

JoAnn Wilson 於 2 個月前 詢問

Denys 於 2 個月前 解答

  • 已解決

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… (閱讀更多)

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!

Maximiliano 於 2 個月前 詢問

TyDraniu 於 2 個月前 解答

  • 被鎖定

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… (閱讀更多)

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.

SuMo Bot 於 1 個月前 詢問

Paul 最近回覆於 1 個月前

  • 已解決
  • 封存

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… (閱讀更多)

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

heusmich 於 3 年前 詢問

heusmich 於 3 年前 解答

  • 被鎖定

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',… (閱讀更多)

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?

TV John 於 2 個月前 詢問

Denys 最近回覆於 2 個月前

  • 已解決

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… (閱讀更多)

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.

nicholas.yonan2435 於 2 個月前 詢問

nicholas.yonan2435 於 2 個月前 解答

  • 已解決
  • 封存

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… (閱讀更多)

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

Robin 於 3 年前 詢問

Robin 於 3 年前 解答

  • 已解決

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… (閱讀更多)

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?

te_simpson 於 2 個月前 詢問

te_simpson 於 2 個月前 解答