Re: Why not implement a chat hide feature?
Posted: 05 January 2025, 15:12
You still see the new messages as they appear, as well as a (sometimes distracting) "Whatsitsname is writing something..." or whatever.
There's a `Notify chat messages` checkbox at the bottom of the general messages that I believe removes the new messages popups. This updated css seems to do it as well:
Code: Select all
#chatbar,
#chatwindowpreview_general {
display: none;
}
wdspider wrote: ↑05 January 2025, 14:31 For those of you who want to hide chat, this little bit of css added under your advanced profile settings should do the trick:It's a bit heavy handed as it removes all chat and requires you to remove the css to see chat again. However, it should work perfect if that's what you desire.Code: Select all
#chatbar { display: none; }
pastor8226 wrote: ↑26 January 2025, 07:09wdspider wrote: ↑05 January 2025, 14:31 For those of you who want to hide chat, this little bit of css added under your advanced profile settings should do the trick:It's a bit heavy handed as it removes all chat and requires you to remove the css to see chat again. However, it should work perfect if that's what you desire.Code: Select all
#chatbar { display: none; }
This works but it takes away the game log as well.
Is there any way to get rid of chat but keep the game log?
I use my phone the majority of the time. I know I can rotate my phone to get the log that way but prefer to use the game log "bubble"
Code: Select all
body.desktop_version {
#chatbar,
#chatwindowpreview_general {
display: none;
}
}
body.mobile_version {
.chatwindowtype_table {
display: none;
}
}