Showing questions tagged:

Bookmarks, do not appear after clicking on Bookmarks on my tool bar at top of screen, why?

I can"t access my individual bookmarks. One day ago, Sunday, April 5, 20226m I was able to access my list of "other bookmarks" and click on whatever I wantded. Today, Ap… (read more)

I can"t access my individual bookmarks. One day ago, Sunday, April 5, 20226m I was able to access my list of "other bookmarks" and click on whatever I wantded. Today, April 6, 2026 I cant do that

Open 154

Why do bookmark tags disaqppear?

I run the current version of Firefox on a Dell Inspiron laptop under Windows 11 Pro. I have around 8,000 bookmarks, and I try to keep them current. Every so often, quite … (read more)

I run the current version of Firefox on a Dell Inspiron laptop under Windows 11 Pro. I have around 8,000 bookmarks, and I try to keep them current. Every so often, quite a few (about half) of my tags disappear, and I have to spend two or three days restoring them. Why do the tags disappear, and how can I prevent their loss?

Open 46

Bookmarks stop working constantly

What happens here is my bookmarks still show on the bar, but they show as grey with no color and the URL is blank. I can restore them using Bookmarks/Manage Bookmarks/Imp… (read more)

What happens here is my bookmarks still show on the bar, but they show as grey with no color and the URL is blank. I can restore them using Bookmarks/Manage Bookmarks/Import and Backup/Restore, but this is happening at least once a week on both my and my wifes HP Desktops. I am wondering if it may be related to Iolo System Mechanic, which we both use to keep our computers "clean"?

Open 18

I used to have a site added on the toolbar so that I could access more than one site that I want

I used to be able to add another site on the top toolbar to the one I am currently on ---- this was on the toolbar at the top of the page. This ability has disappeared r… (read more)

I used to be able to add another site on the top toolbar to the one I am currently on ---- this was on the toolbar at the top of the page. This ability has disappeared recently.

Open 36

i had my favorites set wherwe I wanted for years. now something some where changes them everyday Nobody ask what I wanted. someone get back to me and show me how to get it like I, I , I want it stet up.

you have highjacked my computer and I am tired of the BS. I had favorites set for years how I wanted them and a few months ago and now they change everyday to some BS I d… (read more)

you have highjacked my computer and I am tired of the BS. I had favorites set for years how I wanted them and a few months ago and now they change everyday to some BS I do not want listed as a favorite I do not know how to stop it, Will you help me???

Open 54

Can't delete bookmarks after trying everything so how do we fix it?

We can not delete bookmarks after trying everything I know. Re: restarted in troubleshoot, cleared the history and cookies etc. Do we have to uninstall and then reinstal… (read more)

We can not delete bookmarks after trying everything I know. Re: restarted in troubleshoot, cleared the history and cookies etc. Do we have to uninstall and then reinstall to fix it? If not, how do we fix it?

Open 18

Can't find Bookmarks Mac OS Sequoia

Hello, First my Q, then a comment. My bookmarks all show the same date. I can't find what I was going to use for work today because I can't find it in the bookmarks. This… (read more)

Hello, First my Q, then a comment. My bookmarks all show the same date. I can't find what I was going to use for work today because I can't find it in the bookmarks. This has happened frequently, more than not. Please help. On another note, I had said the YouTube commercial blocking wasn't working, but it is now on my Mac OS after changing some settings. Now I'd like to do that on my iphone 11 if possible. I can't seem to open settings the same way. Thank you.

Open 37

Favorites list

I have always been able to click on a box in the upper right to see my bookmarks on the left side of the screen. This has now disappeared and the only way I can see the b… (read more)

I have always been able to click on a box in the upper right to see my bookmarks on the left side of the screen.

This has now disappeared and the only way I can see the bookmarks is to go to "manage bookmarks". I don't see how to bring it back to the way it was.

I didn't knowingly change anything.

Thank you

Open

Bookmarks > Manage Bookmarks takes me to Other Bookmarks. I'd like it to take me to Bookmarks Menu.

When I click Bookmarks > Manage Bookmarks I'm taken to Other Bookmarks where I never store anything. I'd delete it if I could but it doesn't appear to be an option, so… (read more)

When I click Bookmarks > Manage Bookmarks I'm taken to Other Bookmarks where I never store anything. I'd delete it if I could but it doesn't appear to be an option, so instead I'd like to taken directly to Bookmarks Menu. I came across this post from just over 4 years ago which sounded like it's exactly what I want, but it doesn't work. Are there any changes anyone can suggest that would allow it to work in 2026?

https://support.mozilla.org/en-US/questions/1373437

You can use the autoconfig.cfg file in the Firefox installation folder to initialize (set/lock) preferences and run privileged JavaScript code. In this case code to open the Library with the Bookmarks Menu folder selected. You can modify the showPlaces variable to open any of the four possible root folders (in this case [1]).

To use Autoconfig, place two files into the Firefox installation directory.

   on Windows and Linux, they go into the same directory where Firefox is installed
   on macOS, they go into the Contents/Resources directory of the Firefox.app 

The autoconfig.js file that specifies to use autoconfig.cfg is placed into the "defaults\pref" directory where the channel-prefs.js file is located.

The autoconfig.cfg file is placed at the top level of the Firefox directory.

   autoconfig.cfg and autoconfig.js need to start with a comment line (//)
   autoconfig.js needs to use Unix line endings (LF instead of CR/LF) 

See also:

   https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig 

Content of autoconfig.js

//
pref("general.config.filename", "autoconfig.cfg");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false); // disable sandbox to allow privileged JavaScript


Content of autoconfig.cfg

// first line in autoconfig.cfg is a comment line try {

let {classes:Cc, interfaces:Ci, manager:Cm, utils:Cu} = Components;
var Services = globalThis.Services || ChromeUtils.import("resource://gre/modules/Services.jsm").Services;
function ConfigJS() { Services.obs.addObserver(this, 'chrome-document-global-created', false); }
ConfigJS.prototype = {
 observe: function (aSubject) { aSubject.addEventListener('DOMContentLoaded', this, {once: true}); },
 handleEvent: function (aEvent) {
  let document = aEvent.originalTarget;
  let window = document.defaultView;
  let location = window.location;
  if (/^(chrome:(?!\/\/(global\/content\/commonDialog|browser\/content\/webext-panels)\.x?html)|about:(?!blank))/i.test(location.href)) {
   if (window._gBrowser) {
     let showPlaces = ["AllBookmarks","BookmarksMenu","BookmarksToolbar","UnfiledBookmarks"][1];
     elm = document.getElementById("Browser:ShowAllBookmarks");
     if (elm) {
      elm.setAttribute("oncommand", "PlacesCommandHook.showPlacesOrganizer('"+showPlaces+"')");
     }
   }
  }
 }
};
if (!Services.appinfo.inSafeMode) { new ConfigJS(); }

} catch(e) {Cu.reportError(e);}

Open 9

I have two or three sets of bookmarks and would like to remove the duplicates.

I use the current version of Firefox on Ubuntu 22.04 Linux. When I scroll down past the individual bookmarks at the end of the menu, the folder names start repeating, alo… (read more)

I use the current version of Firefox on Ubuntu 22.04 Linux. When I scroll down past the individual bookmarks at the end of the menu, the folder names start repeating, along with the bookmarks inside them. I have three or four sets of bookmarks and would like to have only one. How can I delete all the bookmark folders below a certain point? By the way, when I install a new, different version of the operating system and sign in Sync restores all the bookmarks.

Open 27

Toolbar is not working correctly on main display (Ubuntu)

Hi, Recently I have a problem with toolbar and in the Firefox browser. Usually I have 3 display (display from laptop and two monitors). When I use Firefox browser on the… (read more)

Hi,

Recently I have a problem with toolbar and in the Firefox browser. Usually I have 3 display (display from laptop and two monitors). When I use Firefox browser on the main display the toolbar very often is not working correctly.

Mainly the problem is with the folders inside the toolbar, so when I hover any folder, the bookmarks saved in that folder don't appear or appear for just one/two sec, then they disappear.

The second problem is when I have the firefox open on the second display (or on the laptop display) and I moved any tab (only the tab, not entire Firefox application), then my toolbar shows only the first bookmark that is saved on my list.

In attachments I added two ss (one is with my normal view on toolbar, and the second one is with the only first bookmark)

Open 27

Why am I having to reload Bookmarks on my Bookmarks Toolbar every couple of days?

Every couple of days the News Sites I have saved to my Bookmarks Toolbar cease to function and I have to delete the icons and then save the Bookmarks to the Toolbar AGAIN… (read more)

Every couple of days the News Sites I have saved to my Bookmarks Toolbar cease to function and I have to delete the icons and then save the Bookmarks to the Toolbar AGAIN! Having to do this on such a frequent basis defeats the purpose of a "Toolbar"!!

Open 63

FF mobile defaults to the same bookmark folder

Until recently, if I wanted to bookmark a web page, FF would default to the last bookmark folder I had used. Now, it keeps defaulting to one particular folder for no appa… (read more)

Until recently, if I wanted to bookmark a web page, FF would default to the last bookmark folder I had used. Now, it keeps defaulting to one particular folder for no apparent reason and it chooses a folder I almost never use. Is this an unannounced new feature - a default folder? I'm running the latest FF update on a Samsung phone.

Open 45

BOOKMARKS DISAPPEARED FROM TOOLBAR

• OS Version: Microsoft Windows 10 Professional (x64) Version 22H2 (build 19045.6466) • Firefox 149.0 (64-bit) • Thunderbird 140.8.1esr (64-bit) I guess now a Firefox … (read more)

• OS Version: Microsoft Windows 10 Professional (x64) Version 22H2 (build 19045.6466) • Firefox 149.0 (64-bit) • Thunderbird 140.8.1esr (64-bit)


I guess now a Firefox “update” includes making bookmarks to disappear from the toolbar . . . go figure.

Have mucked around in their “go to about:profiles” routine and have found my bookmark library still exists; however . . .

1. The BOOKMARKS drop-down MANAGE BOOKMARKS shows all is in order, so apparently I don’t need to “import” anything from anywhere; 2. The bookmarks do not appear in the BOOKMARKS TOOLBAR; 3. VIEW drop-down ➜ TOOLBARS ➜ BOOKMARKS TOOLBAR ➜ ALWAYS SHOW is all as it should be; 4. BUT: No bookmarks appear in the TOOLBAR where they’ve resided comfortably for years . . .

SO: how does one magically make them reappear in the TOOLBAR where they belong?

Many thanks. Appreciated.

Open 45

Constant loss of Bookmarks

bold textEvery time I start the cimpouter I lose my bookmarks how can I avoid this issue. Each time i takes about two hours messing about to get them back … (read more)

bold textEvery time I start the cimpouter I lose my bookmarks how can I avoid this issue. Each time i takes about two hours messing about to get them back

Open 64