Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Roll down Bar

Hi, I have a question or suggestion. I have about 50+ characters in my game, is there a way to select what names appear in the roll down bar so I can clean up the list a bit and not have to scroll for ever to find one?
1646372445
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Hi Doggie! This post: Show Off Your Style 2: The Stylening! gives instructions for installing an extension (very safe), that will allow you to restyle the display of sites viewed in the browser. I would recommend installing this style: Tighter Sidebar Lists  - keithcurtis -  [install] It will make the display much more compact and reduce the need to scroll as much. With planning, you can tag characters to make them easier to filter with the search bar, but this should reduce the pain point somewhat.
Hi Keith, thanks for the suggestion, but that's not what I was asking about, I mean specifically the chat bar to text as a different character. I'd just like the option to "show in chat box" to cut down the vast number of character names. keithcurtis said: Hi Doggie! This post: Show Off Your Style 2: The Stylening! gives instructions for installing an extension (very safe), that will allow you to restyle the display of sites viewed in the browser. I would recommend installing this style: Tighter Sidebar Lists  - keithcurtis -  [install] It will make the display much more compact and reduce the need to scroll as much. With planning, you can tag characters to make them easier to filter with the search bar, but this should reduce the pain point somewhat.
1646623895

Edited 1646632527
<a href="https://app.roll20.net/forum/post/10090772/chat-as-drop-down-overpopulated-for-players/?pageforid=10091282#post-10091282" rel="nofollow">https://app.roll20.net/forum/post/10090772/chat-as-drop-down-overpopulated-for-players/?pageforid=10091282#post-10091282</a> Here's the code I use to only show my name and PC names. &nbsp;Keep in mind that these changes only affect your &nbsp;screen, and not any other player’s screens.&nbsp; /* Hide Specific Character */ #speakingas option[value=character\|character_id] { &nbsp; &nbsp; display: none; } /* Hide all BUT specific characters */ #speakingas option:not([value=player\|player_id]):not([value=character\|character_id]) { &nbsp; &nbsp; display: none; :not([value=]) } /* Example */ #speakingas option:not([value=character\|-KHIA-W9OoZp9eE6UdWy]):not([value=player\|-M4MqKQpTCRs8I6I65Rh]):not([value=character\|-M7YiSUD9rhnHKmKmBnY]):not([value=character\|-M7Yi0tFL482VJrJBblW]):not([value=character\|-M7Yi3hBPf_U-VYId7q0]):not([value=character\|-M7YiVxk1Hz1ebQYkDhh]):not([value=character\|-M7YiXjwmM2ztpWWzsj7]) &nbsp;{ &nbsp; &nbsp; display: none; }
Very cool, thank you Jarren, that should help me out. Jarren said: <a href="https://app.roll20.net/forum/post/10090772/chat-as-drop-down-overpopulated-for-players/?pageforid=10091282#post-10091282" rel="nofollow">https://app.roll20.net/forum/post/10090772/chat-as-drop-down-overpopulated-for-players/?pageforid=10091282#post-10091282</a> Here's the code I use to only show my name and PC names. &nbsp;Keep in mind that these changes only affect your &nbsp;screen, and not any other player’s screens.&nbsp; /* Hide Specific Character */ #speakingas option[value=character\|character_id] { &nbsp; &nbsp; display: none; } /* Hide all BUT specific characters */ #speakingas option:not([value=player\|player_id]):not([value=character\|character_id]) { &nbsp; &nbsp; display: none; :not([value=]) } #speakingas option:not([value=character\|-KHIA-W9OoZp9eE6UdWy]):not([value=player\|-M4MqKQpTCRs8I6I65Rh]):not([value=character\|-M7YiSUD9rhnHKmKmBnY]):not([value=character\|-M7Yi0tFL482VJrJBblW]):not([value=character\|-M7Yi3hBPf_U-VYId7q0]):not([value=character\|-M7YiVxk1Hz1ebQYkDhh]):not([value=character\|-M7YiXjwmM2ztpWWzsj7]) &nbsp;{ &nbsp; &nbsp; display: none; }