Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Więcej informacji

Bookmarks menu not always expanding

  • 6 odpowiedzi
  • 13 osób ma ten problem
  • 2 wyświetlenia
  • Ostatnia odpowiedź od 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?

Wybrane rozwiązanie

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.

Przeczytaj tę odpowiedź w całym kontekście 👍 1

Wszystkie odpowiedzi (6)

more options

Wybrane rozwiązanie

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';}}})();