Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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

  • 3 답장
  • 3 이 문제를 만남
  • 54 보기
  • 최종 답변자: 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;
}