לאתר זה תהיה פונקציונליות מוגבלת בזמן שאנו מתחזקים אותו לשיפור החוויה שלך. אם מאמר מסויים לא פותר את הבעיה שלך וברצונך לשאול שאלה, קהילת התמיכה שלנו מחכה לעזור לך ב־Twitter תחת ‎@FirefoxSupport וב־Reddit תחת ‎/r/firefox.

חיפוש בתמיכה

יש להימנע מהונאות תמיכה. לעולם לא נבקש ממך להתקשר או לשלוח הודעת טקסט למספר טלפון או לשתף מידע אישי. נא לדווח על כל פעילות חשודה באמצעות באפשרות ״דיווח על שימוש לרעה״.

מידע נוסף

Trouble with bookmark toolbar. Want drop down triangles/arrows for folders but no icons.

  • 3 תגובות
  • 3 have this problem
  • 54 views
  • תגובה אחרונה מאת cor-el

more options

I've looked through other peoples questions and googled for about an hour but nothing seems to work for me. I want the drop down triangles/arrows for folders, which I don't have right now (just got ff4). But I don't want the icons for folders or single bookmarks (which I have). So: No icons at all, but drop down arrows.

I'm completely new to this; used to have a theme that was exactly the way I wanted it. Any help or direction pointing is highly appreciated.

I've looked through other peoples questions and googled for about an hour but nothing seems to work for me. I want the drop down triangles/arrows for folders, which I don't have right now (just got ff4). But I don't want the icons for folders or single bookmarks (which I have). So: No icons at all, but drop down arrows. I'm completely new to this; used to have a theme that was exactly the way I wanted it. Any help or direction pointing is highly appreciated.

כל התגובות (3)

more options

Add code to userChrome.css below the @namespace line.


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

#personal-bookmarks .bookmark-item[container] .toolbarbutton-icon {
 display:none !important;
}

more options

Hi cor-el, thanks for your answer. Unfortunately, that only helps me about halfway; it removed the folder icons but not the ones for single bookmarks, and I still have no drop down indicators for folders.

Getting the drop down arrows back is probably most important for me.

I tried another line of code from you from another thread, it got rid of the icons, but without the arrows it's just one long line of text that's really hard to read.

more options

If you want to remove the icons on all toolbar items then leave out the [container] part.

#personal-bookmarks .bookmark-item .toolbarbutton-icon {
 display:none !important;
}

#personal-bookmarks .bookmark-item[container] > .toolbarbutton-menu-dropmarker {
 display:-moz-box !important;
}