Mozilla 도움말 검색

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

자세히 살펴보기

remove bookjmark toolbar favicons

more options

i/m using firefox Developer's latest edition and have tried repeatedly to remove bookmark toolbar favicons and cannot...i removed them from regular firefox but no luck with Developer edition

i have tried all the Chrome tricks i can find on the forum and other places but nothing is working...how do you remove bookmark toolbar favicons from Firefox Developer

i/m using firefox Developer's latest edition and have tried repeatedly to remove bookmark toolbar favicons and cannot...i removed them from regular firefox but no luck with Developer edition i have tried all the Chrome tricks i can find on the forum and other places but nothing is working...how do you remove bookmark toolbar favicons from Firefox Developer

선택된 해결법

set to true in about:config -> toolkit.legacyUserProfileCustomizations.stylesheets

that did it...thank you very much

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (4)

more options

What method did you previously use or did you do this in Firefox 56 via a Legacy extension ?

In current releases you would have to use code in userChrome.css to hide the favicon on the Bookmarks Toolbar.

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

More info about userContent.css and userChrome.css in case you are not familiar: *https://www.userchrome.org/what-is-userchrome-css.html

more options

i have used that exact code in regular firefox and waterefox and it woprked but not in Developers Edition...i just deleted and recreated the userChrome.css file, entered the code again but the favicons are still there

more options

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

more options

선택된 해결법

set to true in about:config -> toolkit.legacyUserProfileCustomizations.stylesheets

that did it...thank you very much