Turn Off Chat

Suggestions & ideas / Suggestions & idées
Post Reply
User avatar
Shadowscaler
Posts: 1
Joined: 08 January 2025, 01:52

Turn Off Chat

Post by Shadowscaler »

Can we turn off the in game chat feature? I find many people use it to express frustration and it's highly distracting when I can't control who is bombarding me with *. Please offer this as an option for everyone's sanity.

*Moderator edit: please refrain from swearing on BGA, this is a family-friendly platform.
Thoth12
Posts: 18
Joined: 21 November 2021, 03:36

Re: Turn Off Chat

Post by Thoth12 »

#chatbar {
display: none;
}

If you add this to the CSS part of your profile (go to preferences, then advanced) you will not see the chat anymore.
User avatar
wdspider
Posts: 55
Joined: 19 July 2024, 05:58

Re: Turn Off Chat

Post by wdspider »

Thoth12 wrote: 10 February 2025, 21:08 #chatbar {
display: none;
}

If you add this to the CSS part of your profile (go to preferences, then advanced) you will not see the chat anymore.
It's a bit more complex than that if you read through this thread: https://boardgamearena.com/forum/viewtopic.php?t=40425

Code: Select all

body.desktop_version {
  #chatbar,
  #chatwindowpreview_general {
    display: none;
  }
}

body.mobile_version {
  .chatwindowtype_table {
    display: none;
  }
}
seems to be the css you actually want to use as it will also hide the message previews while not hiding the game log on mobile.
Post Reply

Return to “Suggestions”