Removes the title bars when viewing a character sheet.
D&D Beyond - Remove Title Bars by mstvnz
Details
Authormstvnz
LicenseMIT
Categoryhttps://www.dndbeyond.com/characters/
Created
Updated
Size660 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name D&D Beyond - Remove Title Bars
@version 20241116.04.12
@namespace https://userstyles.world/user/mstvnz
@description Removes the title bars when viewing a character sheet.
@author mstvnz
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://www.dndbeyond.com/characters/") {
html {
--title-modifier: 120px !important;
}
div.header-wrapper, div[name="megamenu"] {
display: none;
}
@media (min-width: 1px) {
html body.body-rpgcharacter-sheet {
background-position-y: calc(230px - var(--title-modifier) + var(--portrait-modifier)), 0% !important;
}
}
}