Discord No Title Bar

A simple userstyle that removes Discord's new title bar.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==UserStyle==
@name         Discord No Title Bar
@version      1.0.5
@namespace    discord-no-title-bar
@description  A simple userstyle that removes Discord's new title bar.
@author       Coxxs
@license      MIT
==/UserStyle== */

@-moz-document url-prefix("https://discord.com/") {
/* Remove top bar */
.visual-refresh { --custom-app-top-bar-height: 0px }
.visual-refresh .title__85643 { visibility: hidden }

/* Preserve inbox button */
.visual-refresh .trailing_c38106 { position: absolute; top: 12px; right: 10px; z-index: 101 }
.visual-refresh.density-compact .trailing_c38106 { top: 10px }
.visual-refresh.density-cozy .trailing_c38106 { top: 13px }

/* Provide some space for the inbox */
.visual-refresh .toolbar__9293f { padding-right: 40px }
.visual-refresh .searchBar__1ac1c { margin-right: 35px }

/* Padding above the Discord icon (top left) */
.visual-refresh .tutorialContainer__1f388 { padding-top: 8px }

/* Remove help button */
.visual-refresh .trailing_c38106 > a.anchorUnderlineOnHover_edefb8 { display: none }

/* Remove rounded corner and top border */
.visual-refresh .sidebarListRounded_c48ade { border-top-left-radius: 0 !important; border-top: none !important } /* 2025-04-15 */
.visual-refresh .sidebarListRounded__5e434 { border-top-left-radius: 0 !important; border-top: none !important } /* 2025-11-13 */
.visual-refresh .chat_f75fb0[data-has-border=true] { border-top: none !important }
.visual-refresh .container__133bf, /* Friends */
.visual-refresh .container_f391e3, /* Message Requests */
.visual-refresh .container__01ae2,  /* Message Requests - Messages */
.visual-refresh .homeWrapper__0920e, /* Nitro */
.visual-refresh .shop__6db1d, /* Shop */
.visual-refresh .container_a592e1, /* Discover */
.visual-refresh .container__955a3, /* Quests */
.visual-refresh .container__9293f /* Browse Channels */
    { border-top: none !important }
}