Update text on the chatroom page to your own language

In Dead Simple Chat using custom CSS, you can replace the text on the chatroom page with some other text or text from your own language.

To do that go to the dashboard, and create/edit your chatroom, from there you can use the following custom CSS to update the text on your chatroom.

/* Update "Join Chats" title */
#join-chats span {
  display: none;
}

#join-chats:after {
  content: 'New Text';
}

/* Update "Already have an account? Login" title */

#already-have-account span {
  display: none;
}

#already-have-account:after {
  content: 'New Text';
}

/* Update "Email" label */
#email-label label {
    display: none;
}

#email-label:before {
    content: 'new label'
}

/* Update "Password" label */
#password-label label {
    display: none;
}

#password-label:before {
    content: 'new label'
}

/* Update username label */
#username-label label {
    display: none;
}

#username-label:before {
    content: 'new label'
}
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us