Having new messages appear from bottom of window

Hello All,

I’ve been using Chatty on my stream for quite some time and have now made the switch to OBSChat,

Is it possible to have new messages in OBSChat appear from the bottom of the OBSChat Window rather than the top?

Thanks in advance :smile:

The comment stream goes from top to bottom until the screen space is filled, then new messages appear at the bottom, and the old messages at the top are moved offscreen.

Yeah i understand that, but what i’m aiming for is new message to appear at the bottom and the chat history to move upwards from the bottom of the OBSChat window

i figured something like CSS vertical-align: bottom; would work but it made no difference

Hey, I’m doing this with the following CSS Override:

body {
  height: 100%;
  margin: 0px;
  background-color: rgba(0,0,0,0.3);
  overflow: hidden;
}

#chat_box {
  position: absolute;
  width: 100%;
  bottom: 0px;
  height: auto;
  background: transparent !important;
}