• Hey guys,
    Does anyone know how to add color to the text and/or background in a plugin? There’s not much to the coding. There aren’t any available adjustments, which is no good. I’m unable to find any other free chat room plugins that actually work. If i could at the very lest edit the content text to white rather than gray, that would be perfect. As of right now when people are speaking the text is blending with my gray background.

    This is the entire CSS;

    <body>
    <span>
    <style>
    .chat-container {
    height: 260px;
    background-color: #ffff;
    overflow: scroll;
    overflow-x: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid #CCC;
    }
    </style>
    </span>
    </body>

Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    This may not be the CSS being applied because it is setting the background to white, but you say yours is gray. As a quick fix, try changing background-color: #ffff; to color: #fff !important;
    Note that hex color specs should be either 3 or 6 characters long. The 4 f’s may be why the white background is not set.

    If that does not help, we really need a live page in order to identify the correct CSS. I realize this is often not possible, but a live page really helps a lot if there is any way for you to accommodate that.

    This sort of fix may not persist, depending on where you make the edit. It could be overwritten by a theme or plugin update. For your edit to persist, create a child theme and place your desired CSS in the child’s style.css file.

Viewing 1 replies (of 1 total)

The topic ‘Adding Color to Chat Room plugin?’ is closed to new replies.