MyBB Community Forums

Full Version: shoutbox color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Since there is no topic on how to change DVZshoutboxbox background color how do i change it because is trasparent and i barely see what i write on.
You can try adding background-color: #fff; to the element.

It might be #shoutbox .window { border-top: solid 2px rgba(0,0,0,0.1); overflow-y: scroll; }

In which case it will be:

#shoutbox .window { background-color:#fff; border-top:solid 2px rgba(0,0,0,0.1); overflow-y:scroll;}
Thank!