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

DnD 5e SRD Icon in Journal tab, removable?

So i like homebrew my npcs and monsters based on existing stat blocks, so the existing library is very usefull to me for that. But i also like a clean journal tab. The Icon is more of a distraction then any real use to me. So, is there a way to remove it?
1636733837
The Aaron
Roll20 Production Team
API Scripter
The only way to remove it would be with a stylus script in your local browser.  If you can post a screenshot highlighting which icon you're talking about, I can probably throw together the CSS for that.
1636736374

Edited 1636736493
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Try this style using the Stylus extension ( Chrome ,  Firefox )  for a better journal and compendium experience: Tighter Sidebar Lists This will do a lot of things, but also make the sourcefooter less obtrusive. If you want to get rid of it altogether, change this section: .inapp .sourcefooter,.inapp.expansion3 .sourcefooter, .inapp.expansion9 .sourcefooter, .inapp.expansion13 .sourcefooter, .inapp.expansion16 .sourcefooter {     background-size: 15px 10px;     background-image:none;     padding-top: 5px;     top: 0px !important; } to this: .inapp .sourcefooter,.inapp.expansion3 .sourcefooter, .inapp.expansion9 .sourcefooter, .inapp.expansion13 .sourcefooter, .inapp.expansion16 .sourcefooter {     background-size: 15px 10px;     background-image:none;     padding-top: 5px;     top: 0px !important;     display:none; } display:none;  turns it off completely. If you are happy with the rest of the journal/compendium display, copy the style and remove everything but that code block. In that case, it could be reduced to: .inapp .sourcefooter,.inapp.expansion3 .sourcefooter, .inapp.expansion9 .sourcefooter, .inapp.expansion13 .sourcefooter, .inapp.expansion16 .sourcefooter {     display:none; }
You can use the Stylus Extension  to change or hide html elements on websites. For the Roll20 chat menu, here's what I use to hide the Art tab, Jukebox, and Compendium buttons: #arttab, #jukeboxtab, [title~=Compendium] {  display: none !important; } For the GM toolbar on the left side of the screen, here is a list of all the buttons: #select, #editinglayer, #drawingtools, #fxtools, #zoompanel, #measure, #placelight, #fogcontrols.udl.hide, #startrounds, #diceroller, #helpsite