Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

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

Learn More

Bookmarks menu not always expanding

  • 6 답장
  • 13 이 문제를 만남
  • 1 보기
  • 최종 답변자: cor-el

more options

Bookmarks menu > folders normally expand as you roll over them. However, this is only happening with some of my folders and not with others. Seems like a bug. Anyone else got this problem?

Bookmarks menu > folders normally expand as you roll over them. However, this is only happening with some of my folders and not with others. Seems like a bug. Anyone else got this problem?

선택된 해결법

I had the same problem. I solved it by shortening some very long names of the bookmarks in the parent folder (the one containing the folder that was not expanding). Try it and let me know.

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

모든 댓글 (6)

more options

선택된 해결법

I had the same problem. I solved it by shortening some very long names of the bookmarks in the parent folder (the one containing the folder that was not expanding). Try it and let me know.

more options

Yeah, I just recently discovered that myself. Thanks a lot for getting back to me!

more options

hi - how would i easily find the bookmark with the very long name... so stopping my pop-up bookmark menu to open "expanded"

i have 100s of bookmarks.

thankyou

more options

Maybe save (export) the bookmarks to an HTML file and open that file in a Firefox tab.

more options

thankyou again cor-el nice thinking outside box!


I renamed the longest bookmark... restarted firefox that did not resolve


maybe i have more than 1 "long" bookmark name

what is the length of "long" in FF world? thankyou

more options

Here is a bookmarklet to tag names longer than a maximum length that you can use on the HTML file opened in a tab.
You need to create a bookmark with the location set to the JavaScript code or run the code in the Scratchpad.


javascript:(function(){var e=document.getElementsByTagName('A'),E,M=50,i;M=prompt('Maximum Length?',M);for(i=0;E=e[i];i++){N=E.innerHTML;if(N.length>M){E.innerHTML='[!'+N.length+'!]'+N;E.style.color='red';E.style.fontWeight='bold';}}})();