Turn off page thumbnail for New Bookmark

Discussion of features in Mozilla Firefox
Post Reply
pschroeter
Posts: 154
Joined: September 3rd, 2004, 1:19 pm

Turn off page thumbnail for New Bookmark

Post by pschroeter »

I find the webpage thumbnail I see when I click on the Star in the address bar to create a New Bookmark really distracting. It's just a smaller version of the page I'm currently looking at and has no purpose I can see. Can I turn it off?
morat
Posts: 6406
Joined: February 3rd, 2009, 6:29 pm

Re: Turn off page thumbnail for New Bookmark

Post by morat »

Try this:

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");

html|div#editBookmarkPanelFaviconContainer {
  display: none !important;
}
#editBookmarkPanelImage {
  background-image: none !important;
}
http://kb.mozillazine.org/UserChrome.css

The following solution by ssokolow didn't work for me.

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#editBookmarkPanelFaviconContainer,
#editBookmarkPanelImage {
  display: none !important;
}
http://www.reddit.com/r/firefox/comments/8uq4go
Post Reply